Files
xet-core/xet_pkg/Cargo.toml
Hoyt Koepke 0d9f78aaf4 Add README.md files and Cargo.toml updates needed for publishing hf-xet (#773)
This PR adds crates.io-facing metadata (homepage, readme, keywords,
categories) for the publishable crates, along with crate README files
and concise crate-level docs so crates.io and docs.rs pages have better
context.
2026-04-03 12:34:47 -07:00

70 lines
1.9 KiB
TOML

[package]
name = "hf-xet"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Client library and tooling for the Hugging Face Xet data storage system."
readme = "README.md"
keywords = [
"huggingface",
"datasets",
"large-files",
"deduplication",
"cloud-storage",
]
categories = [
"artificial-intelligence",
"asynchronous",
"data-structures",
"filesystem",
]
[lib]
name = "xet"
path = "src/lib.rs"
[dependencies]
xet-runtime = { version = "1.4.0", path = "../xet_runtime" }
xet-core-structures = { version = "1.4.0", path = "../xet_core_structures" }
xet-client = { version = "1.4.0", path = "../xet_client" }
xet-data = { version = "1.4.0", path = "../xet_data" }
async-trait = { workspace = true }
bytes = { workspace = true }
http = { workspace = true }
more-asserts = { workspace = true }
pyo3 = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["net", "time"] }
tokio-util = { workspace = true }
tracing = { workspace = true }
ulid = { workspace = true }
[features]
smoke-test = []
fd-track = ["xet-runtime/fd-track", "xet-client/fd-track", "xet-data/fd-track"]
python = ["xet-runtime/python", "dep:pyo3"]
simulation = ["xet-client/simulation"]
[dev-dependencies]
anyhow = { workspace = true }
async-std = { workspace = true }
clap = { workspace = true, features = ["derive"] }
futures = { workspace = true }
more-asserts = { workspace = true }
serde_json = { workspace = true }
serial_test = { workspace = true }
smol = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, features = [
"rt-multi-thread",
"rt",
"time",
"macros",
] }
tracing-subscriber = { workspace = true }
wiremock = { workspace = true }