[package]
edition = "2024"
rust-version = "1.89"
name = "tasktree"
version = "0.1.1"
authors = ["Jacobus Geluk <jacobus.geluk@dataroad.com>"]
build = "build.rs"
include = [
"Cargo.toml",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"build.rs",
"src/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Distributed task-tree values: W3C trace-compatible task identities under an application-supplied URN scheme, validated lifecycle transitions, lineage, and progress"
documentation = "https://docs.rs/tasktree"
readme = "README.md"
keywords = [
"task",
"tracing",
"traceparent",
"lifecycle",
"distributed",
]
categories = [
"asynchronous",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/legra-ai/tasktree"
[lib]
name = "tasktree"
path = "src/lib.rs"
[dependencies.rand]
version = "0.9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.serde_json]
version = "1"
[build-dependencies.rhusky]
version = "0.0.6"
[lints.clippy]
result_large_err = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "deny"
unreachable_pub = "deny"
[lints.rustdoc]
broken_intra_doc_links = "deny"
missing_crate_level_docs = "deny"