[package]
edition = "2021"
name = "crdt-graph"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An op-based 2P2P-Graph CRDT implementation in Rust."
documentation = "https://docs.rs/crdt-graph/"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bkbkb-net/crdt-graph"
[lib]
name = "crdt_graph"
path = "src/lib.rs"
[[test]]
name = "graph_tests"
path = "tests/graph_tests.rs"
[dependencies.petgraph]
version = "0.8.3"
features = ["std"]
default-features = false
[dependencies.thiserror]
version = "2.0.18"