32 lines
721 B
TOML
32 lines
721 B
TOML
[package]
|
|
name = "xtask"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description.workspace = true
|
|
readme.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[[bin]]
|
|
name = "xtask"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
cargo_metadata = "0.23.1"
|
|
clap = { version = "4.5.53", features = ["derive"] }
|
|
flate2 = "1.1.5"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
sha2 = "0.10.9"
|
|
tar = "0.4.44"
|
|
tempfile = "3.23.0"
|
|
time = { version = "0.3.47", features = ["formatting"] }
|
|
walkdir = "2.5.0"
|
|
zip = { version = "2.4.2", default-features = false, features = ["deflate"] }
|
|
|
|
[lints]
|
|
workspace = true
|