[package]
edition = "2021"
name = "cavs-client"
version = "1.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native streaming client with a persistent cache for CAVS content delivery."
homepage = "https://github.com/orelvis15/cavs-oss"
readme = "README.md"
keywords = [
"cavs",
"client",
"dedup",
"cache",
"cdn",
]
categories = ["command-line-utilities"]
license = "Apache-2.0"
repository = "https://github.com/orelvis15/cavs-oss"
[[bin]]
name = "cavs-client"
path = "src/main.rs"
[[test]]
name = "dual_route"
path = "tests/dual_route.rs"
[[test]]
name = "hardening"
path = "tests/hardening.rs"
[[test]]
name = "hybrid"
path = "tests/hybrid.rs"
[[test]]
name = "manifest_formats"
path = "tests/manifest_formats.rs"
[[test]]
name = "packfile_store"
path = "tests/packfile_store.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.cavs-chunker]
version = "1.2.0"
[dependencies.cavs-hash]
version = "1.2.0"
[dependencies.cavs-manifest]
version = "1.2.0"
[dependencies.cavs-proto]
version = "1.2.0"
[dependencies.cavs-rebuild-plan]
version = "1.2.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.ed25519-dalek]
version = "2"
features = ["rand_core"]
[dependencies.memmap2]
version = "0.9"
[dependencies.rustls]
version = "0.23"
features = ["ring"]
[dependencies.rustls-pemfile]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3.10"
[dependencies.ureq]
version = "2.10"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.tempfile]
version = "3.10"