[package]
edition = "2024"
name = "punch-kernel"
version = "1.2.0"
authors = ["Archy <https://github.com/humancto>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Ring — central kernel and orchestrator for the Punch Agent Combat System"
homepage = "https://humancto.github.io/punch/"
readme = false
license = "MIT"
repository = "https://github.com/humancto/punch"
resolver = "2"
[lib]
name = "punch_kernel"
path = "src/lib.rs"
[[test]]
name = "budget_tenant"
path = "tests/budget_tenant.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "coordination"
path = "tests/coordination.rs"
[[test]]
name = "fighter_lifecycle"
path = "tests/fighter_lifecycle.rs"
[[test]]
name = "gorilla_integration"
path = "tests/gorilla_integration.rs"
[[test]]
name = "ring_integration_test"
path = "tests/ring_integration_test.rs"
[[test]]
name = "tenant_integration"
path = "tests/tenant_integration.rs"
[[test]]
name = "workflow_e2e"
path = "tests/workflow_e2e.rs"
[[test]]
name = "workflow_integration"
path = "tests/workflow_integration.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dashmap]
version = "6"
[dependencies.futures]
version = "0.3"
[dependencies.punch-memory]
version = "1.0.0"
[dependencies.punch-runtime]
version = "1.0.0"
[dependencies.punch-skills]
version = "1.0.0"
[dependencies.punch-types]
version = "1.0.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.44"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.tokio]
version = "1.44"
features = [
"full",
"full",
"test-util",
]