30 lines
844 B
TOML
30 lines
844 B
TOML
[package]
|
|
name = "exo-hypergraph"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
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-hypergraph"
|
|
description = "Hypergraph substrate for higher-order relational reasoning with persistent homology and sheaf theory"
|
|
keywords = ["hypergraph", "topology", "homology", "cognitive", "ai"]
|
|
categories = ["science", "algorithms", "mathematics"]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
exo-core = "0.1"
|
|
|
|
# Core dependencies
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
dashmap = "6.1"
|
|
|
|
# Graph and topology
|
|
petgraph = "0.6"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.0", features = ["test-util"] }
|