ced05a2bb6
This adds a nix-compat-derive derive crate that implements a deriver for NixDeserialize implementations. This is to reduce the amount of code needed to implement deserialization for all the types used by the Nix daemon protocol. Change-Id: I484724b550e8a1d5e9adad9555d9dc1374ae95c2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12022 Autosubmit: Brian Olsen <me@griff.name> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
27 lines
501 B
TOML
27 lines
501 B
TOML
[package]
|
|
name = "nix-compat-derive-tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
compile-tests = []
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.4.1"
|
|
pretty_assertions = "1.4.0"
|
|
rstest = "0.19.0"
|
|
tokio-test = "0.4.3"
|
|
trybuild = "1.0.96"
|
|
|
|
[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"
|
|
|
|
[dev-dependencies.tokio]
|
|
version = "^1.38"
|
|
features = ["io-util", "macros"]
|