meta (backend-rs, macro-rs): set Rust version and edition in root
This commit is contained in:
parent
2f12da683d
commit
f5fc03698b
4 changed files with 16 additions and 9 deletions
|
@ -2,6 +2,10 @@
|
|||
members = ["packages/backend-rs", "packages/macro-rs/macros", "packages/macro-rs/macros-impl"]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
edition = "2021"
|
||||
rust-version = "1.74"
|
||||
|
||||
[workspace.dependencies]
|
||||
macros = { path = "packages/macro-rs/macros" }
|
||||
macros-impl = { path = "packages/macro-rs/macros-impl" }
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[package]
|
||||
edition = "2021"
|
||||
name = "backend-rs"
|
||||
version = "0.0.0"
|
||||
rust-version = "1.74"
|
||||
license = "AGPL-3.0-only"
|
||||
version = "0.0.0"
|
||||
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[package]
|
||||
name = "macros-impl"
|
||||
version = "0.0.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.74"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.0.0"
|
||||
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
convert_case = { workspace = true }
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[package]
|
||||
name = "macros"
|
||||
version = "0.0.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.74"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.0.0"
|
||||
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
|
Loading…
Reference in a new issue