5a97888d8b
From now on we will add the dependencies and their version in the root Cargo.toml and in order to enable the dependency for a workspace member we set `workspace = true` in the member's Cargo.toml. Change-Id: I9738c1cf99810b7ace87ca712c3ea965ba846e25 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12389 Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
24 lines
550 B
TOML
24 lines
550 B
TOML
[package]
|
|
name = "nix-compat-derive-tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
compile-tests = []
|
|
|
|
[dev-dependencies]
|
|
hex-literal = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
rstest = { workspace = true }
|
|
tokio-test = { workspace = true }
|
|
trybuild = { workspace = true }
|
|
tokio = { workspace = true, features = ["io-util", "macros"] }
|
|
|
|
[dev-dependencies.nix-compat]
|
|
version = "0.1.0"
|
|
path = "../nix-compat"
|
|
features = ["test", "wire"]
|
|
|
|
[dev-dependencies.nix-compat-derive]
|
|
version = "0.1.0"
|
|
path = "../nix-compat-derive"
|