git.delta.rocks / fleet / refs/commits / 51d5ea52f7ad

difftreelog

source

Cargo.toml3.2 KiBsourcehistory
1[workspace]2members = ["crates/*", "cmds/*", "remowt/crates/*", "remowt/cmds/*"]3resolver = "3"4package.version = "0.1.9"5package.edition = "2024"6package.rust-version = "1.95.0"7package.license = "MIT"89[workspace.dependencies]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" }15remowt-fleet = { path = "./crates/remowt-fleet" }1617remowt-client = { version = "0.1.9", path = "remowt/crates/remowt-client" }18remowt-endpoints = { version = "0.1.9", path = "remowt/crates/remowt-endpoints" }19remowt-link-shared = { version = "0.1.9", path = "remowt/crates/remowt-link-shared" }20remowt-plugin = { version = "0.1.9", path = "remowt/crates/remowt-plugin" }21remowt-polkit-shared = { version = "0.1.9", path = "remowt/crates/polkit-shared" }22remowt-ui-prompt = { version = "0.1.9", path = "remowt/crates/remowt-ui-prompt" }2324bifrostlink = "0.2.0"25bifrostlink-macros = "0.2.0"26bifrostlink-ports = "0.2.0"2728iroh = { version = "1.0.0", features = ["unstable-custom-transports"] }29iroh-base = "1.0.0"30n0-watcher = "1.0.0"31noq-udp = { version = "1.0.0", default-features = false }3233age = { version = "0.11", features = ["plugin", "ssh"] }34anyhow = "1.0"35base64 = "0.22.1"36bindgen = "0.72.0"37bytes = "1.11.0"38camino = "1.2.2"39chrono = { version = "0.4.41", features = ["serde"] }40clap = { version = "4.5", features = ["derive", "env", "unicode", "wrap_help"] }41clap_complete = "4.5"42console-subscriber = "0.5.0"43cxx = "1.0.168"44cxx-build = "1.0.168"45ed25519-dalek = "3.0.0-rc.0"46futures = "0.3.31"47hex = "0.4.3"48hmac = "0.13.0"49hostname = "0.4.1"50human-repr = "1.1"51indicatif = "0.18"52indoc = "2.0.6"53itertools = "0.15.0"54linked-hash-map = "0.5.6"55nix = { version = "0.31.2", features = ["fs", "user"] }56nom = "8.0.0"57opentelemetry = "0.32.0"58opentelemetry-appender-tracing = "0.32.0"59opentelemetry-otlp = { version = "0.32.0", features = ["grpc-tonic", "gzip-tonic", "http-json", "reqwest-rustls"] }60opentelemetry_sdk = "0.32.0"61pbkdf2 = "0.13"62peg = "0.8.5"63pkg-config = "0.3.30"64rand = "0.10.0"65russh = { version = "0.61.2", default-features = false, features = ["flate2", "ring", "rsa"] }66russh-config = "0.58.0"67serde = { version = "1.0", features = ["derive"] }68serde_json = "1.0"69sha2 = "0.11"70shlex = "2.0.1"71tabled = "0.21.0"72tempfile = "3.20"73test-log = { version = "0.2.19", features = ["trace"] }74thiserror = "2.0.12"75time = "0.3.41"76tokio = { version = "1.45.1", features = ["fs", "macros", "rt", "rt-multi-thread", "sync", "time", "tracing"] }77tracing = "0.1"78tracing-indicatif = "0.3.13"79tracing-journald = "0.3.2"80tracing-opentelemetry = "0.33.0"81uuid = { version = "1", features = ["v4"] }82# For fixed coloring needs to be updated to https://github.com/tokio-rs/tracing/pull/348483tokio-util = "0.7.11"84tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }85unicode_categories = "0.1.1"86vte = { version = "0.15.0", features = ["ansi"] }87x25519-dalek = { version = "2.0.1", features = ["getrandom"] }88zbus = "5.16.0"89zbus_polkit = "5.0.0"90goodlog-subscriber = { version = "0.1.9", path = "crates/goodlog-subscriber" }9192[profile.dev]93panic = "abort"94[profile.release]95panic = "abort"