2023-01-24 18:35:17 +03:00
|
|
|
[package]
|
|
|
|
name = "nix-interop"
|
2023-02-11 13:17:58 +03:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-01-24 18:35:17 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-25 07:34:25 +03:00
|
|
|
anyhow = "1.0.68"
|
|
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
|
|
serde_json = "1.0.91"
|
|
|
|
serde_repr = "0.1.10"
|
2023-03-13 10:34:49 +03:00
|
|
|
syntax = { path = "../syntax" }
|
2023-04-22 00:38:31 +03:00
|
|
|
tokio = { version = "1.27.0", features = ["io-util", "macros", "process", "sync"] }
|
2023-04-13 21:35:30 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-05 05:45:13 +03:00
|
|
|
tokio = { version = "1.27.0", features = ["macros", "parking_lot", "rt", "sync"] } # parking_lot is required for `OnceCell::const_new`.
|