[package]
edition = "2021"
rust-version = "1.75.0"
name = "stack-ids"
version = "0.1.2"
authors = ["Josh Stevenson <j.stevenson.cs@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared identity, scope, trace, and digest primitives for the local-first AI systems stack"
homepage = "https://github.com/RecursiveIntell/stack-ids"
documentation = "https://docs.rs/stack-ids"
readme = "README.md"
keywords = [
"ids",
"scope",
"trace-context",
"blake3",
"schema",
]
license = "Apache-2.0"
repository = "https://github.com/RecursiveIntell/stack-ids"
[lib]
name = "stack_ids"
path = "src/lib.rs"
[[test]]
name = "canonical_digest_golden"
path = "tests/canonical_digest_golden.rs"
[[test]]
name = "id_validation"
path = "tests/id_validation.rs"
[dependencies.blake3]
version = "1.8.3"
[dependencies.boundary-compiler]
version = "0.1.1"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.schemars]
version = "0.8.22"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.uuid]
version = "1.22.0"
features = ["v4"]
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.serde_json]
version = "1.0.149"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unimplemented = "deny"
[lints.clippy.expect_used]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"