mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-10-10 13:46:28 +00:00
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "xtask"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
description = "Workspace automation tool following the xtask pattern <https://github.com/matklad/cargo-xtask>"
|
|
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]
|
|
anyhow.workspace = true
|
|
build-info.path = "../build-info"
|
|
cargo_metadata.workspace = true
|
|
clap = { workspace = true, features = ["derive"] }
|
|
futures-util.workspace = true
|
|
reqwest = { workspace = true, features = [
|
|
"stream",
|
|
"json",
|
|
"rustls-tls",
|
|
], default-features = false }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
sysinfo.workspace = true
|
|
time = { workspace = true, features = [
|
|
"serde",
|
|
"serde-human-readable",
|
|
"macros",
|
|
] }
|
|
tokio = { workspace = true, features = [
|
|
"rt",
|
|
"net",
|
|
"time",
|
|
"process",
|
|
"signal",
|
|
] }
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
tracing-trace.path = "../tracing-trace"
|
|
uuid = { workspace = true, features = ["v7", "serde"] }
|