Move nix json types to extra crate

Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
Marcel Müller 2025-12-30 10:05:27 +01:00
parent d662ac59a3
commit a7986584d5
7 changed files with 934 additions and 8 deletions

View file

@ -1,12 +1,23 @@
[workspace]
members = ["nixie-build"]
members = ["nix-json", "nixie-build"]
resolver = "3"
[workspace.package]
edition = "2024"
version = "0.1.0"
license = "EUPL-1.2"
license = "EUPLs-1.2"
authors = ["Marcel Müller <neikos@neikos.email>"]
readme = "./README.md"
[workspace.dependencies]
thiserror = "2"
displaydoc = "0.2"
serde_json = "1"
serde = { features = ["derive"], version = "1" }
petgraph = "0.8"
tokio = { features = ["full"], version = "1.48" }
futures = "0.3"
nix-json = { version = "0.1.0", path = "./nix-json" }