MeiliSearch/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]
2024-07-08 18:09:12 +02:00
anyhow = "1.0.86"
build-info = { version = "1.7.0", path = "../build-info" }
2024-01-09 13:24:33 +01:00
cargo_metadata = "0.18.1"
2024-07-08 18:09:12 +02:00
clap = { version = "4.5.8", features = ["derive"] }
2024-02-26 21:29:20 +01:00
futures-core = "0.3.30"
futures-util = "0.3.30"
2024-07-08 18:09:12 +02:00
reqwest = { version = "0.11.27", 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-08 18:09:12 +02:00
sysinfo = "0.30.12"
time = { version = "0.3.36", features = [
"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-08 18:09:12 +02:00
uuid = { version = "1.9.1", features = ["v7", "serde"] }