Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem https://nextgraph.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nextgraph-rs/ng-verifier/Cargo.toml

48 lines
1.5 KiB

[package]
name = "ng-verifier"
3 weeks ago
version = "0.1.1-alpha"
description = "Verifier library of NextGraph"
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
4 months ago
keywords = ["crdt","e2ee","local-first","p2p","eventual-consistency"]
documentation.workspace = true
rust-version.workspace = true
build = "build.rs"
[badges]
maintenance = { status = "actively-developed" }
[features]
testing = []
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_bare = "0.5.0"
serde_bytes = "0.11.7"
serde_json = "1.0"
rand = { version = "0.7", features = ["getrandom"] }
web-time = "0.2.0"
either = "1.8.1"
futures = "0.3.24"
lazy_static = "1.4.0"
async-trait = "0.1.64"
async-std = { version = "1.12.0", features = [ "attributes", "unstable" ] }
automerge = "0.5.11"
yrs = "0.19.2"
sbbf-rs-safe = "0.3.2"
3 weeks ago
ng-repo = { path = "../ng-repo", version = "0.1.1-alpha" }
ng-net = { path = "../ng-net", version = "0.1.1-alpha" }
ng-oxigraph = { path = "../ng-oxigraph", version = "0.4.0-alpha.7-ngalpha" }
[target.'cfg(target_family = "wasm")'.dependencies]
3 weeks ago
ng-oxigraph = { path = "../ng-oxigraph", version = "0.4.0-alpha.7-ngalpha", features = ["js"] }
[target.'cfg(all(not(target_family = "wasm"),not(docsrs)))'.dependencies]
3 weeks ago
ng-storage-rocksdb = { path = "../ng-storage-rocksdb", version = "0.1.1-alpha" }
getrandom = "0.2.7"
[dev-dependencies]
3 weeks ago
ng-repo = { path = "../ng-repo", version = "0.1.1-alpha", features = ["testing"] }