25 lines
505 B
TOML
25 lines
505 B
TOML
[package]
|
|
name = "DnfUtils"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "utils"
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
cxx = "1.0.192"
|
|
fern = "0.7.1"
|
|
futures-util = "0.3.31"
|
|
indicatif = "0.18.3"
|
|
libc = "0.2.180"
|
|
log = "0.4.29"
|
|
reqwest = { version = "0.13.1", default-features = false, features = ["stream", "native-tls"] }
|
|
tokio = { version = "1.49.0", features = ["rt-multi-thread", "full"] }
|
|
chrono = "0.4.43"
|
|
colored = "3.1.1"
|
|
env_logger = "0.11.8"
|
|
|
|
[build-dependencies]
|
|
cxx-build = "1.0.192"
|