29 lines
773 B
TOML
29 lines
773 B
TOML
[package]
|
|
name = "ruvector-cognitive-container"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
description = "Verifiable WASM cognitive container with canonical witness chains"
|
|
readme = "README.md"
|
|
homepage = "https://ruv.io"
|
|
documentation = "https://docs.rs/ruvector-cognitive-container"
|
|
keywords = ["wasm", "cognitive", "container", "witness-chain", "deterministic"]
|
|
categories = ["algorithms", "wasm", "cryptography"]
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
proptest = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|