git.delta.rocks / jrsonnet / refs/commits / 493bea4220c4

difftreelog

source

Cargo.toml2.4 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]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" }1415abort-on-drop = "0.2"16age = { version = "0.11", features = ["plugin", "ssh"] }17age-core = "0.11"18anyhow = "1.0"19async-trait = "0.1.88"20axum = { version = "0.8.7", features = ["http2", "macros", "ws"] }21axum-extra = { version = "0.12.2", features = ["typed-header"] }22base64 = "0.22.1"23bindgen = "0.72.0"24chrono = { version = "0.4.41", features = ["serde"] }25clap = { version = "4.5", features = ["derive", "env", "unicode", "wrap_help"] }26clap_complete = "4.5"27cxx = "1.0.168"28cxx-build = "1.0.168"29ed25519-dalek = "2.1"30futures = "0.3.31"31futures-util = { version = "0.3.31", features = ["sink"] }32hex = "0.4.3"33hostname = "0.4.1"34human-repr = "1.1"35hyper = "1.8.1"36indicatif = "0.18"37indoc = "2.0.6"38itertools = "0.14.0"39linked-hash-map = "0.5.6"40nix = { version = "0.30.1", features = ["fs", "user"] }41nom = "8.0.0"42opentelemetry = "0.30.0"43opentelemetry-otlp = { version = "0.30.0", features = ["grpc-tonic", "gzip-tonic", "http-json"] }44opentelemetry_sdk = "0.30.0"45openssh = "0.11.5"46peg = "0.8.5"47pkg-config = "0.3.30"48rand = "0.9.1"49regex = "1.11"50serde = { version = "1.0", features = ["derive"] }51serde-transcode = "1.1.1"52serde_json = "1.0"53shlex = "1.3"54tabled = "0.20.0"55tempfile = "3.20"56test-log = { version = "0.2.18", features = ["trace"] }57tf-provider = "0.2.2"58thiserror = "2.0.12"59time = "0.3.41"60tokio = { version = "1.45.1", features = ["fs", "macros", "rt", "rt-multi-thread", "sync", "time"] }61tokio-util = "0.7.17"62toml_edit = "0.23.7"63tracing = "0.1"64tracing-indicatif = "0.3.13"65tracing-opentelemetry = "0.31.0"66# 0.3.20 breaks ansi coloring of log output, which looks very bad with nix.67# Freezing version until better solution (possibly other console log pretty-printer) is implemented.68# https://github.com/tokio-rs/tracing/issues/336969tracing-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"