Change-Id: I4c5bf0a378c69a2a22097000583b1abcee089190 Reviewed-on: https://cl.snix.dev/c/snix/+/30602 Tested-by: besadii Autosubmit: Florian Klink <flokli@flokli.de> Reviewed-by: Yureka <snix@yuka.dev>
31 lines
624 B
TOML
31 lines
624 B
TOML
[package]
|
|
name = "nix-daemon"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.83"
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
futures.workspace = true
|
|
mimalloc.workspace = true
|
|
nix-compat = { path = "../nix-compat" }
|
|
snix-castore = { path = "../castore" }
|
|
snix-store = { path = "../store" }
|
|
snix-tracing = { path = "../tracing" }
|
|
tokio = { workspace = true, features = [
|
|
"fs",
|
|
"macros",
|
|
"net",
|
|
"rt",
|
|
"rt-multi-thread",
|
|
"signal",
|
|
] }
|
|
tokio-listener.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = ["otlp"]
|
|
otlp = ["snix-tracing/otlp"]
|