[package]
edition = "2024"
name = "sagashield"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ACID transactional Saga runtime, Step-0 security guardrail, and MCP server for autonomous AI agents."
documentation = "https://docs.rs/sagashield"
readme = "README.md"
keywords = [
"ai",
"agents",
"mcp",
"transactions",
"saga",
]
categories = [
"asynchronous",
"development-tools",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sebastianmechno-sys/sagashield"
[features]
python = ["dep:pyo3"]
[lib]
name = "sagashield"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "sagashield"
path = "src/main.rs"
[[bin]]
name = "sagashield-mcp"
path = "src/bin/sagashield-mcp.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "otel_export"
path = "examples/otel_export.rs"
[[example]]
name = "run_evals"
path = "examples/run_evals.rs"
[[example]]
name = "security_demo"
path = "examples/security_demo.rs"
[[test]]
name = "concurrency_stress_test"
path = "tests/concurrency_stress_test.rs"
[[test]]
name = "crash_recovery_test"
path = "tests/crash_recovery_test.rs"
[[test]]
name = "dispatcher_integration_test"
path = "tests/dispatcher_integration_test.rs"
[[test]]
name = "dlq_and_human_loop_test"
path = "tests/dlq_and_human_loop_test.rs"
[[test]]
name = "fsm_guardrail_test"
path = "tests/fsm_guardrail_test.rs"
[[test]]
name = "idempotency_test"
path = "tests/idempotency_test.rs"
[[test]]
name = "mcp_protocol_test"
path = "tests/mcp_protocol_test.rs"
[[test]]
name = "replay_and_audit_test"
path = "tests/replay_and_audit_test.rs"
[[test]]
name = "security_fuzz_test"
path = "tests/security_fuzz_test.rs"
[[test]]
name = "security_sandbox_test"
path = "tests/security_sandbox_test.rs"
[[test]]
name = "wal_rollback_test"
path = "tests/wal_rollback_test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.pyo3]
version = "0.22"
features = [
"extension-module",
"abi3-py38",
]
optional = true
[dependencies.rusqlite]
version = "0.31"
features = [
"bundled",
"uuid",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dependencies.uuid]
version = "1.8"
features = [
"v4",
"serde",
]