2024-01-09 13:24:33 +01:00
[ package ]
name = "xtask"
version . workspace = true
authors . workspace = true
2024-01-22 10:13:27 +01:00
description = "Workspace automation tool following the xtask pattern <https://github.com/matklad/cargo-xtask>"
2024-01-09 13:24:33 +01:00
homepage . workspace = true
readme . workspace = true
edition . workspace = true
license . workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[ dependencies ]
2024-07-08 18:09:12 +02:00
anyhow = "1.0.86"
2024-02-27 18:34:52 +01:00
build-info = { version = "1.7.0" , path = "../build-info" }
2024-01-09 13:24:33 +01:00
cargo_metadata = "0.18.1"
2024-07-10 13:46:24 +02:00
clap = { version = "4.5.9" , features = [ "derive" ] }
2024-02-26 21:29:20 +01:00
futures-core = "0.3.30"
futures-util = "0.3.30"
2024-07-08 18:31:15 +02:00
reqwest = { version = "0.12.5" , features = [
2024-02-26 21:29:20 +01:00
"stream" ,
"json" ,
"rustls-tls" ,
2024-06-13 17:47:44 +02:00
] , default-features = false }
2024-07-08 18:09:12 +02:00
serde = { version = "1.0.204" , features = [ "derive" ] }
serde_json = "1.0.120"
2024-02-26 21:29:20 +01:00
sha2 = "0.10.8"
2024-07-10 13:46:24 +02:00
sysinfo = "0.30.13"
2024-07-08 18:09:12 +02:00
time = { version = "0.3.36" , features = [
2024-02-27 18:34:52 +01:00
"serde" ,
"serde-human-readable" ,
"macros" ,
] }
2024-07-08 18:09:12 +02:00
tokio = { version = "1.38.0" , features = [
2024-02-26 21:29:20 +01:00
"rt" ,
"net" ,
"time" ,
"process" ,
"signal" ,
] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-trace = { version = "0.1.0" , path = "../tracing-trace" }
2024-07-10 13:46:24 +02:00
uuid = { version = "1.10.0" , features = [ "v7" , "serde" ] }