[package]
edition = "2021"
name = "crdt-graph"
version = "0.3.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 = "flatbuffers_tests"
path = "tests/flatbuffers_tests.rs"
[[test]]
name = "flatbuffers_with_data_tests"
path = "tests/flatbuffers_with_data_tests.rs"
[[test]]
name = "flatbuffers_with_str_data_tests"
path = "tests/flatbuffers_with_str_data_tests.rs"
[[test]]
name = "graph_tests"
path = "tests/graph_tests.rs"
[[test]]
name = "multi_replica_tests"
path = "tests/multi_replica_tests.rs"
[[test]]
name = "types_tests"
path = "tests/types_tests.rs"
[dependencies.flatbuffers]
version = "25.12.19"
[dependencies.petgraph]
version = "0.8.3"
features = ["std"]
default-features = false
[dependencies.thiserror]
version = "2.0.18"
[dependencies.uuid]
version = "1"
features = ["v7"]