lix-installer/Cargo.toml

53 lines
1.8 KiB
TOML
Raw Normal View History

2022-09-02 23:03:57 +00:00
[package]
name = "harmonic"
description = "A `nix` installer"
version = "0.0.0-unreleased"
2022-09-02 23:03:57 +00:00
edition = "2021"
resolver = "2"
2022-09-28 18:52:22 +00:00
[package.metadata.riff.targets.aarch64-apple-darwin]
build-inputs = ["darwin.apple_sdk.frameworks.Security"]
[package.metadata.riff.targets.x86_64-apple-darwin]
build-inputs = ["darwin.apple_sdk.frameworks.Security"]
2022-09-02 23:03:57 +00:00
[dependencies]
async-tar = "0.4.2"
async-trait = "0.1.57"
atty = "0.2.14"
2022-10-18 18:03:19 +00:00
bytes = "1.2.1"
2022-10-06 19:21:49 +00:00
clap = { version = "4", features = ["derive", "env"] }
2022-09-02 23:03:57 +00:00
color-eyre = "0.6.2"
crossterm = { version = "0.25.0", features = ["event-stream"] }
eyre = "0.6.8"
futures = "0.3.24"
2022-10-18 18:03:19 +00:00
glob = "0.3.0"
nix = { version = "0.25.0", features = ["user", "fs", "process", "term"], default-features = false }
2022-09-02 23:03:57 +00:00
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
2022-09-08 00:13:06 +00:00
reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls", "stream"] }
2022-10-18 18:03:19 +00:00
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
serde_with = "2.0.1"
tar = "0.4.38"
2022-09-02 23:03:57 +00:00
target-lexicon = "0.12.4"
2022-10-18 18:03:19 +00:00
tempdir = { version = "0.3.7"}
2022-09-02 23:03:57 +00:00
thiserror = "1.0.33"
tokio = { version = "1.21.0", features = ["time", "io-std", "process", "fs", "signal", "tracing", "rt-multi-thread", "macros", "io-util", "parking_lot" ] }
2022-09-08 00:13:06 +00:00
tokio-util = { version = "0.7", features = ["io"] }
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" ] }
2022-10-18 18:03:19 +00:00
url = { version = "2.3.1", features = ["serde"] }
2022-09-02 23:03:57 +00:00
valuable = { version = "0.1.0", features = ["derive"] }
2022-09-09 18:43:35 +00:00
walkdir = "2.3.2"
2022-10-18 18:03:19 +00:00
sxd-xpath = "0.4.2"
xz2 = { version = "0.1.7", features = ["static", "tokio"] }
sxd-document = "0.3.2"
2022-10-19 22:12:50 +00:00
plist = "1.3.1"
dirs = "4.0.0"
erased-serde = "0.3.23"
typetag = "0.2.3"
dyn-clone = "1.0.9"
2022-11-01 18:33:54 +00:00
rand = "0.8.5"
semver = { version = "1.0.14", features = ["serde"] }