git.delta.rocks / fleet / refs/commits / 210037fd620b

difftreelog

source

Cargo.toml2.3 KiBsourcehistory
1[workspace]2members = ["crates/*", "cmds/*"]3resolver = "2"4package.version = "0.1.0"5package.edition = "2024"6package.rust-version = "1.89.0"78[workspace.dependencies]9fleet-base = { path = "./crates/fleet-base" }10fleet-shared = { path = "./crates/fleet-shared" }11nix-eval = { path = "./crates/nix-eval" }12nixlike = { path = "./crates/nixlike" }13opentelemetry-exporter-env = { path = "./crates/opentelemetry-exporter-env" }14remowt-fleet = { path = "./crates/remowt-fleet" }1516remowt-client = "0.1.3"17remowt-endpoints = "0.1.3"18remowt-link-shared = "0.1.3"19remowt-plugin = "0.1.3"20remowt-ui-prompt = "0.1.3"2122bifrostlink = "0.2.3"2324uuid = { version = "1", features = ["v4"] }2526age = { version = "0.11", features = ["plugin", "ssh"] }27anyhow = "1.0"28base64 = "0.22.1"29bindgen = "0.72.0"30camino = "1.2.2"31chrono = { version = "0.4.41", features = ["serde"] }32clap = { version = "4.5", features = ["derive", "env", "unicode", "wrap_help"] }33clap_complete = "4.5"34cxx = "1.0.168"35cxx-build = "1.0.168"36ed25519-dalek = "2.1"37futures = "0.3.31"38hex = "0.4.3"39hmac = "0.12"40hostname = "0.4.1"41human-repr = "1.1"42indicatif = "0.18"43indoc = "2.0.6"44itertools = "0.14.0"45linked-hash-map = "0.5.6"46nix = { version = "0.31.2", features = ["fs", "user"] }47nom = "8.0.0"48opentelemetry = "0.31.0"49opentelemetry-appender-tracing = "0.31.1"50opentelemetry-otlp = { version = "0.31.0", features = ["grpc-tonic", "gzip-tonic", "http-json", "reqwest-rustls"] }51opentelemetry_sdk = "0.31.0"52pbkdf2 = "0.12"53peg = "0.8.5"54pkg-config = "0.3.30"55rand = "0.10.0"56serde = { version = "1.0", features = ["derive"] }57serde_json = "1.0"58sha2 = "0.10"59shlex = "1.3"60tabled = "0.20.0"61tempfile = "3.20"62test-log = { version = "0.2.19", features = ["trace"] }63thiserror = "2.0.12"64time = "0.3.41"65tokio = { version = "1.45.1", features = ["fs", "macros", "rt", "rt-multi-thread", "sync", "time"] }66tracing = "0.1"67tracing-indicatif = "0.3.13"68tracing-opentelemetry = "0.32.1"69# For fixed coloring needs to be updated to https://github.com/tokio-rs/tracing/pull/348470tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }71unicode_categories = "0.1.1"72vte = { version = "0.15.0", features = ["ansi"] }73x25519-dalek = { version = "2.0.1", features = ["getrandom"] }7475[profile.dev]76panic = "abort"77[profile.release]78panic = "abort"