26 lines
572 B
TOML
26 lines
572 B
TOML
[package]
|
|
name = "sheafsync"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
description = "Motor de consistencia sin coordinación vía cohomología de haces celulares"
|
|
license = "MIT"
|
|
repository = "https://git.tawasuyu.net/tawasuyu/hifas"
|
|
keywords = ["crdt", "local-first", "escrow", "coordination", "sheaf"]
|
|
categories = ["concurrency", "data-structures", "mathematics"]
|
|
|
|
[lib]
|
|
name = "sheafsync"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "sheafsync"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
nalgebra = "0.35.0"
|
|
petgraph = "0.8.3"
|
|
thiserror = "2.0.18"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1.11.0"
|