Condensate / rust_core /Cargo.toml
Executor-Tyrant-Framework's picture
Condensate v2: Full Rust conversion — 12 modules, 105 tests, zero Python inflation
4b6e841
raw
history blame contribute delete
534 Bytes
[package]
name = "condensate_core"
version = "0.1.0"
edition = "2021"
description = "Living memory manager — Rust core with PyO3 bindings + LD_PRELOAD membrane"
license = "AGPL-3.0"
[lib]
name = "condensate_core"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "condensate_cli"
path = "src/cli.rs"
[dependencies]
pyo3 = { version = "0.24", features = ["extension-module"], optional = true }
lz4_flex = "0.11"
libc = "0.2"
[features]
default = ["python"]
python = ["pyo3"]
preload = []
[profile.release]
opt-level = 3
lto = true