MeiliSearch/crates/xtask/Cargo.toml

45 lines
1.2 KiB
TOML
Raw Normal View History

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]
2025-01-08 13:52:14 +01:00
anyhow = "1.0.95"
build-info = { version = "1.7.0", path = "../build-info" }
2025-01-08 15:58:03 +01:00
cargo_metadata = "0.19.1"
2025-01-08 13:52:14 +01:00
clap = { version = "4.5.24", features = ["derive"] }
futures-core = "0.3.31"
futures-util = "0.3.31"
reqwest = { version = "0.12.12", features = [
2024-02-26 21:29:20 +01:00
"stream",
"json",
"rustls-tls",
2024-06-13 17:47:44 +02:00
], default-features = false }
2025-01-08 13:52:14 +01:00
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
2024-02-26 21:29:20 +01:00
sha2 = "0.10.8"
2025-01-08 15:58:03 +01:00
sysinfo = "0.33.1"
2025-01-08 13:52:14 +01:00
time = { version = "0.3.37", features = [
"serde",
"serde-human-readable",
"macros",
] }
2025-01-08 13:52:14 +01:00
tokio = { version = "1.42.0", features = [
2024-02-26 21:29:20 +01:00
"rt",
"net",
"time",
"process",
"signal",
] }
2025-01-08 13:52:14 +01:00
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
2024-02-26 21:29:20 +01:00
tracing-trace = { version = "0.1.0", path = "../tracing-trace" }
2025-01-08 13:52:14 +01:00
uuid = { version = "1.11.0", features = ["v7", "serde"] }