2024-07-22 16:51:42 +02:00
|
|
|
[package]
|
|
|
|
name = "nix-compat-derive"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-28 23:54:46 +02:00
|
|
|
proc-macro2 = { workspace = true, features = ["proc-macro"] }
|
|
|
|
quote = { workspace = true, features = ["proc-macro"] }
|
2024-08-28 23:42:29 +02:00
|
|
|
syn = { version = "2.0.76", features = ["full", "extra-traits"] }
|
2024-07-22 16:51:42 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-28 23:54:46 +02:00
|
|
|
hex-literal = { workspace = true }
|
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
rstest = { workspace = true }
|
|
|
|
tokio-test = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["io-util", "macros"] }
|
2024-07-22 16:51:42 +02:00
|
|
|
|
|
|
|
[dev-dependencies.nix-compat]
|
|
|
|
path = "../nix-compat"
|
|
|
|
default-features = false
|
|
|
|
features = ["async", "wire", "test"]
|