[package]
edition = "2024"
name = "plexor-core"
version = "0.1.0-alpha.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for the rust implementation of the Plexo distributed system architecture, providing the fundamental Plexus, Neuron, Codec, and Axon abstractions."
readme = "README.md"
keywords = [
"distributed",
"actor",
"network",
"neural",
"plexo",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MPL-2.0"
repository = "https://gitlab.com/plexo/plexor"
resolver = "2"
[features]
test-utils = ["regex"]
[lib]
name = "plexor_core"
path = "src/lib.rs"
[[test]]
name = "backpressure_tests"
path = "tests/backpressure_tests.rs"
[[test]]
name = "erasure_logic"
path = "tests/erasure_logic.rs"
[[test]]
name = "error_handling"
path = "tests/error_handling.rs"
[[test]]
name = "plexus_integration"
path = "tests/plexus_integration.rs"
[[test]]
name = "thalamus_integration"
path = "tests/thalamus_integration.rs"
[[test]]
name = "universal_plexus"
path = "tests/universal_plexus.rs"
[dependencies.futures-util]
version = "0.3.31"
[dependencies.itertools]
version = "0.14.0"
[dependencies.moka]
version = "0.12.12"
features = ["future"]
[dependencies.regex]
version = "1.11.1"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.43.0"
features = [
"full",
"sync",
]
[dependencies.tracing]
version = "0.1.44"
[dependencies.uuid]
version = "1.14.0"
features = [
"v4",
"v7",
"serde",
]
[dev-dependencies.tokio]
version = "1.43.0"
features = [
"full",
"sync",
]