1[workspace]2members = ["crates/*", "cmds/*"]3resolver = "2"4package.version = "0.1.0"5package.edition = "2024"6package.rust-version = "1.89.0"78[workspace.dependencies]9better-command = { path = "./crates/better-command" }10fleet-base = { path = "./crates/fleet-base" }11fleet-shared = { path = "./crates/fleet-shared" }12nix-eval = { path = "./crates/nix-eval" }13nixlike = { path = "./crates/nixlike" }14opentelemetry-exporter-env = { path = "./crates/opentelemetry-exporter-env" }1516abort-on-drop = "0.2"17age = { version = "0.11", features = ["plugin", "ssh"] }18age-core = "0.11"19anyhow = "1.0"20async-trait = "0.1.88"21axum = { version = "0.8.7", features = ["http2", "macros", "ws"] }22axum-extra = { version = "0.12.2", features = ["typed-header"] }23base64 = "0.22.1"24bindgen = "0.72.0"25chrono = { version = "0.4.41", features = ["serde"] }26clap = { version = "4.5", features = ["derive", "env", "unicode", "wrap_help"] }27clap_complete = "4.5"28cxx = "1.0.168"29cxx-build = "1.0.168"30ed25519-dalek = "2.1"31futures = "0.3.31"32futures-util = { version = "0.3.31", features = ["sink"] }33hex = "0.4.3"34hostname = "0.4.1"35human-repr = "1.1"36hyper = "1.8.1"37indicatif = "0.18"38indoc = "2.0.6"39itertools = "0.14.0"40linked-hash-map = "0.5.6"41nix = { version = "0.31.2", features = ["fs", "user"] }42nom = "8.0.0"43opentelemetry = "0.31.0"44opentelemetry-otlp = { version = "0.31.0", features = ["grpc-tonic", "gzip-tonic", "http-json", "reqwest-rustls"] }45opentelemetry_sdk = "0.31.0"46opentelemetry-appender-tracing = "0.31.1"47openssh = "0.11.5"48peg = "0.8.5"49pkg-config = "0.3.30"50rand = "0.10.0"51regex = "1.11"52serde = { version = "1.0", features = ["derive"] }53serde-transcode = "1.1.1"54serde_json = "1.0"55shlex = "1.3"56tabled = "0.20.0"57tempfile = "3.20"58test-log = { version = "0.2.19", features = ["trace"] }59tf-provider = "0.2.2"60thiserror = "2.0.12"61time = "0.3.41"62tokio = { version = "1.45.1", features = ["fs", "macros", "rt", "rt-multi-thread", "sync", "time"] }63tokio-util = "0.7.17"64toml_edit = "0.23.10"65tracing = "0.1"66tracing-indicatif = "0.3.13"67tracing-opentelemetry = "0.32.1"6869tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }70unicode_categories = "0.1.1"71vte = { version = "0.15.0", features = ["ansi"] }72x25519-dalek = { version = "2.0.1", features = ["getrandom"] }7374[profile.dev]75panic = "abort"76[profile.release]77panic = "abort"