git.delta.rocks / jrsonnet / refs/commits / d0d2d550883b

difftreelog

source

cmds/fleet/Cargo.toml1.2 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 = true11anyhow = "1.0"12serde = { version = "1.0", features = ["derive"] }13serde_json = "1.0"14time = { version = "0.3.30", features = ["serde"] }15tempfile = "3.8"16once_cell = "1.18.0"17hostname = "0.3.1"18age-core = "0.9.0"19peg = "0.8.2"20age = { version = "0.9.2", features = ["ssh", "armor"] }21base64 = "0.21.5"22chrono = { version = "0.4.31", features = ["serde"] }23z85 = "3.0.5"24clap = { version = "4.4.7", features = [25	"derive",26	"env",27	"wrap_help",28	"unicode",29] }30tokio = { version = "1.33.0", features = ["full"] }31tracing = "0.1"32tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }33tokio-util = { version = "0.7.10", features = ["codec"] }34async-trait = "0.1.74"35futures = "0.3.29"36tracing-indicatif = "0.3.5"37indicatif = "0.17.7"38itertools = "0.11.0"39shlex = "1.2.0"40tabled = { version = "0.14.0", features = ["color"] }41owo-colors = { version = "3.5.0", features = ["supports-color", "supports-colors"] }42r2d2 = "0.8.10"43abort-on-drop = "0.2.2"44unindent = "0.2.3"45regex = "1.10.2"46openssh = "0.10.1"47human-repr = "1.1.0"