Reduce duplication in Cargo.toml
(#426)
This commit is contained in:
parent
9bba7d6390
commit
616af0f4c0
3 changed files with 20 additions and 11 deletions
|
@ -8,3 +8,10 @@ exclude = [
|
||||||
"doctest",
|
"doctest",
|
||||||
]
|
]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
|
[workspace.package]
|
||||||
|
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
|
homepage = "https://maud.lambda.xyz/"
|
||||||
|
repository = "https://github.com/lambda-fairy/maud"
|
||||||
|
edition = "2021"
|
||||||
|
|
|
@ -2,14 +2,15 @@
|
||||||
name = "maud"
|
name = "maud"
|
||||||
# When releasing a new version, please update html_root_url in src/lib.rs
|
# When releasing a new version, please update html_root_url in src/lib.rs
|
||||||
version = "0.26.0"
|
version = "0.26.0"
|
||||||
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
|
||||||
license = "MIT/Apache-2.0"
|
|
||||||
documentation = "https://docs.rs/maud/"
|
documentation = "https://docs.rs/maud/"
|
||||||
homepage = "https://maud.lambda.xyz/"
|
|
||||||
repository = "https://github.com/lambda-fairy/maud"
|
|
||||||
description = "Compile-time HTML templates."
|
description = "Compile-time HTML templates."
|
||||||
categories = ["template-engine"]
|
categories = ["template-engine"]
|
||||||
edition = "2021"
|
|
||||||
|
authors.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
|
|
@ -2,13 +2,14 @@
|
||||||
name = "maud_macros"
|
name = "maud_macros"
|
||||||
# When releasing a new version, please update html_root_url in src/lib.rs
|
# When releasing a new version, please update html_root_url in src/lib.rs
|
||||||
version = "0.26.0"
|
version = "0.26.0"
|
||||||
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
|
||||||
license = "MIT/Apache-2.0"
|
|
||||||
documentation = "https://docs.rs/maud_macros/"
|
documentation = "https://docs.rs/maud_macros/"
|
||||||
homepage = "https://maud.lambda.xyz/"
|
description = "Internal crate. Please use 'maud' instead."
|
||||||
repository = "https://github.com/lambda-fairy/maud"
|
|
||||||
description = "Compile-time HTML templates."
|
authors.workspace = true
|
||||||
edition = "2021"
|
license.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
syn = "2"
|
syn = "2"
|
||||||
|
|
Loading…
Add table
Reference in a new issue