sat-rs/satrs-mib/codegen/Cargo.toml

30 lines
524 B
TOML
Raw Normal View History

2022-11-27 15:48:21 +01:00
[package]
2022-11-27 22:13:15 +01:00
name = "satrs-mib-codegen"
2022-11-27 15:48:21 +01:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
2022-11-27 17:05:30 +01:00
[[test]]
name = "tests"
path = "tests/tests.rs"
2022-11-27 15:48:21 +01:00
[dependencies]
quote = "1.0"
proc-macro2 = "1.0"
2022-11-27 17:05:30 +01:00
[dependencies.satrs-core]
2022-11-27 22:13:15 +01:00
path = "../../satrs-core"
2022-11-27 17:05:30 +01:00
[dev-dependencies]
trybuild = { version = "1.0", features = ["diff"] }
2022-11-27 22:05:42 +01:00
[dev-dependencies.satrs-mib]
2022-11-27 22:13:15 +01:00
path = ".."
2022-11-27 22:05:42 +01:00
2022-11-27 15:48:21 +01:00
[dependencies.syn]
version = "1.0"
features = ["extra-traits"]