[package]
edition = "2024"
rust-version = "1.97"
name = "onetaskgraph-plugin-api"
version = "0.2.20"
authors = ["Nick DeRobertis"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The plugin contract onetaskgraph sources implement: the traits, the work types, and the capability declaration."
readme = false
license = "MIT"
repository = "https://github.com/nickderobertis/onetaskgraph"
[lib]
name = "onetaskgraph_plugin_api"
path = "src/lib.rs"
[[test]]
name = "contract"
path = "tests/contract.rs"
[[test]]
name = "live"
path = "tests/live.rs"
[dependencies.async-trait]
version = "0.1.92"
[dependencies.chrono]
version = "0.4.45"
features = [
"std",
"serde",
"clock",
]
default-features = false
[dependencies.schemars]
version = "1.2.2"
features = ["chrono04"]
[dependencies.secrecy]
version = "0.10.3"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.thiserror]
version = "2.0.20"
[dev-dependencies.tokio]
version = "1.53.1"
features = [
"macros",
"rt",
"rt-multi-thread",
"sync",
"time",
]