git.delta.rocks / jrsonnet / refs/commits / 590ae3fadf8f

difftreelog

source

cmds/fleet/Cargo.toml907 Bsourcehistory
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.2", features = ["serde"] }13tempfile = "3.2"14once_cell = "1.5"15hostname = "0.3.1"16age-core = "0.7.0"17peg = "0.8.0"18nixlike = {path = "../../crates/nixlike"}19age = { version = "0.7.0", features = ["ssh", "armor"] }20base64 = "0.13.0"21chrono = { version = "0.4.19", features = ["serde"] }22z85 = "3.0.3"23clap = { version = "3.1.0", features = ["derive", "env", "wrap_help", "unicode"] }24tokio = { version = "1.14.0", features = ["full"] }25tracing = "0.1.29"26tracing-subscriber = { version = "0.3.3", features = ["fmt", "env-filter"] }27tokio-util = { version = "0.7.0", features = ["codec"] }28async-trait = "0.1.52"29futures = "0.3.17"