git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
38 lines
980 B
TOML
38 lines
980 B
TOML
[package]
|
|
name = "exo-core"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
rust-version = "1.77"
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["rUv <ruv@ruv.io>"]
|
|
repository = "https://github.com/ruvnet/ruvector"
|
|
homepage = "https://ruv.io"
|
|
documentation = "https://docs.rs/exo-core"
|
|
description = "Core traits and types for EXO-AI cognitive substrate - IIT consciousness measurement and Landauer thermodynamics"
|
|
keywords = ["consciousness", "cognitive", "ai", "iit", "thermodynamics"]
|
|
categories = ["science", "algorithms", "simulation"]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
# Ruvector SDK dependencies
|
|
ruvector-core = "0.1"
|
|
ruvector-graph = "0.1"
|
|
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# Error handling
|
|
thiserror = "2.0"
|
|
anyhow = "1.0"
|
|
|
|
# Async runtime
|
|
tokio = { version = "1.41", features = ["rt-multi-thread", "sync"] }
|
|
|
|
# Utilities
|
|
dashmap = "6.1"
|
|
uuid = { version = "1.10", features = ["v4", "serde"] }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|