2022-11-27 15:48:21 +01:00
|
|
|
[package]
|
2022-11-27 22:13:15 +01:00
|
|
|
name = "satrs-mib-codegen"
|
2023-08-28 23:23:52 +02:00
|
|
|
version = "0.1.0-alpha.0"
|
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
|
|
|
|
2022-11-27 17:05:30 +01:00
|
|
|
[dependencies.satrs-core]
|
2023-09-18 18:55:30 +02:00
|
|
|
# version = "0.1.0-alpha.0"
|
|
|
|
git = "https://egit.irs.uni-stuttgart.de/rust/sat-rs.git"
|
|
|
|
rev = "35e1f7a983f6535c5571186e361fe101d4306b89"
|
2022-11-27 17:05:30 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-07-03 00:42:20 +02:00
|
|
|
trybuild = { version = "1", features = ["diff"] }
|
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 = ".."
|
2022-11-27 22:05:42 +01:00
|
|
|
|
2022-11-27 15:48:21 +01:00
|
|
|
[dependencies.syn]
|
2023-07-03 00:42:20 +02:00
|
|
|
version = "2"
|
2023-07-03 00:43:56 +02:00
|
|
|
features = ["full"]
|