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

36 lines
730 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"
version = "0.1.1"
2022-11-27 15:48:21 +01:00
edition = "2021"
2023-08-28 23:47:04 +02:00
description = "satrs-mib proc macro implementation"
homepage = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"
repository = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"
license = "Apache-2.0"
2022-11-27 15:48:21 +01:00
# 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]
2023-07-03 00:42:20 +02:00
quote = "1"
proc-macro2 = "1"
2022-11-27 15:48:21 +01:00
[dependencies.syn]
version = "2"
features = ["full"]
2022-11-27 17:05:30 +01:00
[dev-dependencies]
2023-07-03 00:42:20 +02:00
trybuild = { version = "1", features = ["diff"] }
[dev-dependencies.satrs-shared]
version = "0.1.3"
path = "../../satrs-shared"
2022-11-27 17:05:30 +01:00
2022-11-27 22:05:42 +01:00
[dev-dependencies.satrs-mib]
2022-11-27 22:13:15 +01:00
path = ".."