git.delta.rocks / jrsonnet / refs/commits / 89d35672dcfd

difftreelog

source

cmds/fleet/Cargo.toml1.2 KiBsourcehistory
1[package]2name = "fleet"3description = "NixOS configuration management"4version = "0.1.0"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6edition = "2021"78[dependencies]9anyhow = "1.0"10serde = { version = "1.0", features = ["derive"] }11serde_json = "1.0"12time = { version = "0.3.30", features = ["serde"] }13tempfile = "3.8"14once_cell = "1.18.0"15hostname = "0.3.1"16age-core = "0.9.0"17peg = "0.8.2"18nixlike = { path = "../../crates/nixlike" }19age = { version = "0.9.2", features = ["ssh", "armor"] }20base64 = "0.21.5"21chrono = { version = "0.4.31", features = ["serde"] }22z85 = "3.0.5"23clap = { version = "4.4.7", features = [24	"derive",25	"env",26	"wrap_help",27	"unicode",28] }29tokio = { version = "1.33.0", features = ["full"] }30tracing = "0.1"31tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }32tokio-util = { version = "0.7.10", features = ["codec"] }33async-trait = "0.1.74"34futures = "0.3.29"35tracing-indicatif = "0.3.5"36indicatif = "0.17.7"37itertools = "0.11.0"38shlex = "1.2.0"39tabled = { version = "0.14.0", features = ["color"] }40owo-colors = { version = "3.5.0", features = ["supports-color", "supports-colors"] }41r2d2 = "0.8.10"42abort-on-drop = "0.2.2"43unindent = "0.2.3"44regex = "1.10.2"45openssh = "0.10.1"46human-repr = "1.1.0"