silk-graph 0.2.0

Merkle-CRDT graph engine for distributed, conflict-free knowledge graphs
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75"
name = "silk-graph"
version = "0.2.0"
authors = ["Kieleth <kieleth@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Merkle-CRDT graph engine for distributed, conflict-free knowledge graphs"
homepage = "https://kieleth.com"
readme = "README.md"
keywords = [
    "crdt",
    "merkle",
    "graph",
    "distributed",
    "knowledge-graph",
]
categories = [
    "database",
    "data-structures",
    "network-programming",
]
license-file = "LICENSE.md"
repository = "https://github.com/Kieleth/silk-graph"

[features]
default = []
python = [
    "dep:pyo3",
    "signing",
]
signing = [
    "dep:ed25519-dalek",
    "dep:rand",
]

[lib]
name = "silk"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[test]]
name = "integration_sync"
path = "tests/integration_sync.rs"

[[test]]
name = "stress_sync"
path = "tests/stress_sync.rs"

[[bench]]
name = "bench_entry"
path = "benches/bench_entry.rs"
harness = false

[[bench]]
name = "bench_graph"
path = "benches/bench_graph.rs"
harness = false

[[bench]]
name = "bench_oplog"
path = "benches/bench_oplog.rs"
harness = false

[[bench]]
name = "bench_sync"
path = "benches/bench_sync.rs"
harness = false

[dependencies.blake3]
version = "1"

[dependencies.ed25519-dalek]
version = "2.1"
features = ["rand_core"]
optional = true

[dependencies.hex]
version = "0.4"

[dependencies.pyo3]
version = ">=0.23.4, <0.24"
features = ["extension-module"]
optional = true

[dependencies.rand]
version = "0.8"
optional = true

[dependencies.redb]
version = "2"

[dependencies.regex]
version = "1"

[dependencies.rmp-serde]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.ed25519-dalek]
version = "2.1"
features = ["rand_core"]

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.tempfile]
version = "3"