git.delta.rocks / fleet / refs/commits / 615754ca0747

difftreelog

source

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