[package]
edition = "2021"
rust-version = "1.78"
name = "tensor-wasm-artifacts"
version = "0.3.8"
authors = ["Craton Software Company <security@craton.com.ar>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified content-addressed, HMAC-signed, on-disk artifact store primitive for TensorWasm."
homepage = "https://github.com/craton-co/craton-tensor-wasm"
documentation = "https://docs.rs/tensor-wasm-artifacts"
readme = "README.md"
keywords = [
"wasm",
"cache",
"content-addressed",
"hmac",
"artifact",
]
categories = [
"caching",
"encoding",
]
license = "Apache-2.0"
repository = "https://github.com/craton-co/craton-tensor-wasm"
[lib]
name = "tensor_wasm_artifacts"
path = "src/lib.rs"
[[test]]
name = "bad_version"
path = "tests/bad_version.rs"
[[test]]
name = "concurrent_put"
path = "tests/concurrent_put.rs"
[[test]]
name = "contains_remove"
path = "tests/contains_remove.rs"
[[test]]
name = "disk_round_trip"
path = "tests/disk_round_trip.rs"
[[test]]
name = "distinct_keys_partition"
path = "tests/distinct_keys_partition.rs"
[[test]]
name = "envelope_round_trip"
path = "tests/envelope_round_trip.rs"
[[test]]
name = "get_to_streaming"
path = "tests/get_to_streaming.rs"
[[test]]
name = "key_rotation"
path = "tests/key_rotation.rs"
[[test]]
name = "list_filters_foreign_files"
path = "tests/list_filters_foreign_files.rs"
[[test]]
name = "metadata_sidecar"
path = "tests/metadata_sidecar.rs"
[[test]]
name = "rotation_and_toctou_regression"
path = "tests/rotation_and_toctou_regression.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[[test]]
name = "size_caps"
path = "tests/size_caps.rs"
[[test]]
name = "streaming_perf"
path = "tests/streaming_perf.rs"
[[test]]
name = "tamper_rejected"
path = "tests/tamper_rejected.rs"
[dependencies.blake3]
version = "1"
[dependencies.hmac]
version = "0.12"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.subtle]
version = "2"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.zeroize]
version = "1"
features = ["zeroize_derive"]
[dependencies.zstd]
version = "0.13"
[dev-dependencies.blake3]
version = "1"
[dev-dependencies.tempfile]
version = "3"