aagt-core 0.3.5

Core types and traits for the AAGT AI Agent framework
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "aagt-core"
version = "0.3.5"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and traits for the AAGT AI Agent framework"
readme = "README.md"
license = "MIT"
repository = "https://github.com/undead-undead/aagt"

[features]
default = [
    "trading",
    "telegram",
]
swarm-p2p = [
    "dep:libp2p",
    "dep:argon2",
    "dep:base64",
]
telegram = []
trading = []

[lib]
name = "aagt_core"
path = "src/lib.rs"

[[example]]
name = "deep_refactoring_demo"
path = "examples/deep_refactoring_demo.rs"

[[example]]
name = "qmd_memory_usage"
path = "examples/qmd_memory_usage.rs"

[[example]]
name = "refactored_demo"
path = "examples/refactored_demo.rs"

[[example]]
name = "repro_risk_bug"
path = "examples/repro_risk_bug.rs"

[[example]]
name = "skill_loader_prototype"
path = "examples/skill_loader_prototype.rs"

[[example]]
name = "strategy_pipeline"
path = "examples/strategy_pipeline.rs"

[[example]]
name = "swarm_demo"
path = "examples/swarm_demo.rs"

[[example]]
name = "test_dynamic_skills"
path = "examples/test_dynamic_skills.rs"

[[example]]
name = "verify_audit_fixes"
path = "examples/verify_audit_fixes.rs"

[[example]]
name = "verify_memory_isolation"
path = "examples/verify_memory_isolation.rs"

[[example]]
name = "verify_resilience"
path = "examples/verify_resilience.rs"

[[test]]
name = "delegation"
path = "tests/delegation.rs"

[[test]]
name = "event_lifecycle_test"
path = "tests/event_lifecycle_test.rs"

[[test]]
name = "external_skill_test"
path = "tests/external_skill_test.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "knowledge_skills"
path = "tests/knowledge_skills.rs"

[[test]]
name = "personality"
path = "tests/personality.rs"

[[test]]
name = "qmd_integration"
path = "tests/qmd_integration.rs"

[[test]]
name = "scheduler"
path = "tests/scheduler.rs"

[[test]]
name = "test_agent_swarm"
path = "tests/test_agent_swarm.rs"

[[test]]
name = "test_forge"
path = "tests/test_forge.rs"

[[test]]
name = "test_swarm"
path = "tests/test_swarm.rs"

[[test]]
name = "tiered_rag_tests"
path = "tests/tiered_rag_tests.rs"

[[test]]
name = "verify_audit_fixes"
path = "tests/verify_audit_fixes.rs"

[[test]]
name = "verify_fixes"
path = "tests/verify_fixes.rs"

[[test]]
name = "verify_memory_limits"
path = "tests/verify_memory_limits.rs"

[[test]]
name = "verify_risk_fix"
path = "tests/verify_risk_fix.rs"

[[test]]
name = "verify_tool_policy"
path = "tests/verify_tool_policy.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.argon2]
version = "0.5"
optional = true

[dependencies.async-trait]
version = "0.1"

[dependencies.base64]
version = "0.21"
optional = true

[dependencies.bytes]
version = "1.9"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.console-subscriber]
version = "0.5.0"

[dependencies.dashmap]
version = "6.1"

[dependencies.fs2]
version = "0.4.3"

[dependencies.futures]
version = "0.3"

[dependencies.libp2p]
version = "0.53"
features = [
    "tcp",
    "dns",
    "kad",
    "gossipsub",
    "noise",
    "yamux",
    "tokio",
    "macros",
    "identify",
    "ping",
]
optional = true

[dependencies.parking_lot]
version = "0.12"

[dependencies.prost]
version = "0.13"

[dependencies.rayon]
version = "1.10"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "stream",
]

[dependencies.rust_decimal]
version = "1.36"
features = ["serde-float"]

[dependencies.rust_decimal_macros]
version = "1.36"

[dependencies.schemars]
version = "0.8"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml_ng]
version = "0.10"

[dependencies.simd-json]
version = "0.14"

[dependencies.thiserror]
version = "2.0"

[dependencies.tiktoken-rs]
version = "0.9.1"

[dependencies.tokio]
version = "1.43"
features = ["full"]

[dependencies.tokio-cron-scheduler]
version = "0.13"

[dependencies.tonic]
version = "0.12"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-appender]
version = "0.2"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "json",
    "env-filter",
]

[dependencies.uuid]
version = "1.12"
features = [
    "v4",
    "serde",
]

[dependencies.wasmtime]
version = "29.0.0"

[dependencies.wasmtime-wasi]
version = "29.0.0"

[dependencies.which]
version = "8.0.0"

[dependencies.zip]
version = "0.6.6"

[dev-dependencies.clap]
version = "4.4"
features = ["derive"]

[dev-dependencies.tempfile]
version = "3.24.0"

[dev-dependencies.tokio-test]
version = "0.4"

[build-dependencies.tonic-build]
version = "0.12"