git.delta.rocks / jrsonnet / refs/commits / 0dbf00452082

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 = true11tokio.workspace = true12anyhow = "1.0"13serde = { version = "1.0", features = ["derive"] }14serde_json = "1.0"15time = { version = "0.3.30", features = ["serde"] }16tempfile = "3.8"17once_cell = "1.18.0"18hostname = "0.3.1"19age-core = "0.9.0"20peg = "0.8.2"21age = { version = "0.9.2", features = ["ssh", "armor"] }22base64 = "0.21.5"23chrono = { version = "0.4.31", features = ["serde"] }24z85 = "3.0.5"25clap = { version = "4.4.7", 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.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"