git.delta.rocks / jrsonnet / refs/commits / 989a90dd7b97

difftreelog

source

cmds/fleet/Cargo.toml1.1 KiBsourcehistory
1[package]2name = "fleet"3description = "NixOS configuration management"4version = "0.2.0"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6edition = "2021"78[dependencies]9nixlike.workspace = true10better-command.workspace = true11tokio.workspace = true12anyhow = "1.0"13serde = { version = "1.0", features = ["derive"] }14serde_json = "1.0"15time = { version = "0.3", features = ["serde"] }16tempfile = "3.10"17once_cell = "1.19"18hostname = "0.3"19age-core = "0.10"20peg = "0.8"21age = { version = "0.10", features = ["ssh", "armor"] }22base64 = "0.21"23chrono = { version = "0.4", features = ["serde"] }24z85 = "3.0"25clap = { version = "4.5", features = [26	"derive",27	"env",28	"wrap_help",29	"unicode",30] }31tracing = "0.1"32tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }33tokio-util = { version = "0.7", features = ["codec"] }34async-trait = "0.1"35futures = "0.3"36tracing-indicatif = "0.3"37indicatif = "0.17"38itertools = "0.12"39shlex = "1.3"40tabled = { version = "0.15" }41owo-colors = { version = "4.0", features = ["supports-color", "supports-colors"] }42r2d2 = "0.8.10"43abort-on-drop = "0.2"44unindent = "0.2"45regex = "1.10"46openssh = "0.10"47human-repr = "1.1"