[package]
edition = "2021"
rust-version = "1.88"
name = "cellos-cortex"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bridge between CellOS execution cells and the Cortex doctrine layer — DoctrineAuthorityPolicy, CortexCellRunner, CellosLedgerEmitter."
homepage = "https://github.com/0ryant/CellOS"
documentation = "https://docs.rs/cellos-cortex"
readme = "README.md"
keywords = [
"cellos",
"cortex",
"authority",
"policy",
"bridge",
]
categories = [
"api-bindings",
"config",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0ryant/CellOS"
[features]
default = []
http-ledger = ["dep:reqwest"]
[lib]
name = "cellos_cortex"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.cellos-core]
version = "0.7.0"
[dependencies.cellos-supervisor]
version = "0.5.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ed25519-dalek]
version = "2"
features = ["zeroize"]
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"stream",
"json",
]
optional = true
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
]
[dependencies.tracing]
version = "0.1"
[lints.clippy]
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"