[package]
edition = "2021"
name = "agentic-reality"
version = "0.1.0"
authors = ["Agentra Labs <contact@agentralabs.tech>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Existential grounding system for AI agents — deployment awareness, resource proprioception, reality physics"
homepage = "https://agentralabs.tech"
readme = false
keywords = [
"ai",
"agent",
"reality",
"grounding",
"deployment",
]
categories = [
"data-structures",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/agentralabs/agentic-reality"
[features]
cli = [
"dep:clap",
"dep:clap_complete",
"format",
]
default = [
"cli",
"format",
"ffi",
]
encryption = ["dep:aes-gcm"]
ffi = ["format"]
format = ["dep:lz4_flex"]
[lib]
name = "agentic_reality"
crate-type = [
"lib",
"cdylib",
"staticlib",
]
path = "src/lib.rs"
[[example]]
name = "bench_reality"
path = "examples/bench_reality.rs"
[[test]]
name = "conservation_test"
path = "tests/conservation_test.rs"
[[test]]
name = "phase01_types"
path = "tests/phase01_types.rs"
[[test]]
name = "phase02_engine"
path = "tests/phase02_engine.rs"
[[test]]
name = "phase03_format"
path = "tests/phase03_format.rs"
[[test]]
name = "phase04_validation"
path = "tests/phase04_validation.rs"
[[test]]
name = "phase05_inventions"
path = "tests/phase05_inventions.rs"
[[test]]
name = "phase06_bridges"
path = "tests/phase06_bridges.rs"
[[test]]
name = "phase07_security"
path = "tests/phase07_security.rs"
[[test]]
name = "phase08_stress"
path = "tests/phase08_stress.rs"
[[test]]
name = "phase09_ffi"
path = "tests/phase09_ffi.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[[bench]]
name = "cli_bench"
path = "benches/cli_bench.rs"
harness = false
[[bench]]
name = "mcp_bench"
path = "benches/mcp_bench.rs"
harness = false
[[bench]]
name = "stress_bench"
path = "benches/stress_bench.rs"
harness = false
[dependencies.aes-gcm]
version = "0.10"
optional = true
[dependencies.agentic-sdk]
version = "0.2.0"
[dependencies.bincode]
version = "1.3"
[dependencies.bitflags]
version = "2.4"
[dependencies.blake3]
version = "1.5"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
optional = true
[dependencies.clap_complete]
version = "4"
optional = true
[dependencies.constant_time_eq]
version = "0.3"
[dependencies.getrandom]
version = "0.2"
[dependencies.hex]
version = "0.4"
[dependencies.log]
version = "0.4"
[dependencies.lz4_flex]
version = "0.11"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sysinfo]
version = "0.31"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1.0"
features = [
"v4",
"v5",
"serde",
]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.35"
features = ["full"]