[package]
edition = "2021"
rust-version = "1.85"
name = "waggle-core"
version = "0.4.0"
authors = ["Modiqo <oss@modiqo.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sans-I/O core of waggle: tokens, timestamps, entropy injection. No clock, no I/O, no storage — every effect is a parameter. Compiles to wasm32 unchanged."
homepage = "https://github.com/modiqo/waggle"
readme = "README.md"
keywords = [
"agents",
"mcp",
"attribution",
"handoff",
"coordination",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/modiqo/waggle"
[lib]
name = "waggle_core"
path = "src/lib.rs"
[[test]]
name = "event_sourcing"
path = "tests/event_sourcing.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "selection_vectors"
path = "tests/selection_vectors.rs"
[[test]]
name = "spec_vectors"
path = "tests/spec_vectors.rs"
[[bench]]
name = "hot_paths"
path = "benches/hot_paths.rs"
harness = false
[dependencies.ed25519-dalek]
version = "2"
features = ["std"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
default-features = false
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"