2022-09-02 23:03:57 +00:00
|
|
|
[package]
|
|
|
|
name = "harmonic"
|
|
|
|
description = "A `nix` installer"
|
|
|
|
version = "0.0.1"
|
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
async-compression = { version = "0.3.14", features = ["xz", "futures-io"] }
|
|
|
|
async-tar = "0.4.2"
|
|
|
|
async-trait = "0.1.57"
|
|
|
|
atty = "0.2.14"
|
|
|
|
clap = { version = "3.2.20", features = ["derive", "env"] }
|
|
|
|
color-eyre = "0.6.2"
|
|
|
|
crossterm = { version = "0.25.0", features = ["event-stream"] }
|
|
|
|
eyre = "0.6.8"
|
|
|
|
futures = "0.3.24"
|
|
|
|
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
|
2022-09-06 19:48:37 +00:00
|
|
|
reqwest = { version = "0.11.11", features = ["native-tls", "stream"] }
|
2022-09-02 23:03:57 +00:00
|
|
|
target-lexicon = "0.12.4"
|
|
|
|
thiserror = "1.0.33"
|
2022-09-06 19:48:37 +00:00
|
|
|
tokio = { version = "1.21.0", features = ["time", "io-std", "process", "fs", "tracing", "rt-multi-thread", "macros", "io-util"] }
|
2022-09-02 23:03:57 +00:00
|
|
|
tracing = { version = "0.1.36", features = [ "valuable" ] }
|
|
|
|
tracing-error = "0.2.0"
|
|
|
|
tracing-subscriber = { version = "0.3.15", features = [ "env-filter", "valuable" ] }
|
|
|
|
valuable = { version = "0.1.0", features = ["derive"] }
|