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/engine/verifier/Cargo.toml

58 lines
1.7 KiB

[package]
name = "ng-verifier"
version = "0.1.2"
description = "Verifier library of NextGraph"
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
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"
base64-url = "2.0.0"
async-std = { version = "1.12.0", features = ["attributes", "unstable"] }
automerge = "0.5.11"
yrs = "0.19.2"
qrcode = { version = "0.14.1", default-features = false, features = ["svg"] }
sbbf-rs-safe = "0.3.2"
ng-repo = { path = "../repo", version = "0.1.2" }
ng-net = { path = "../net", version = "0.1.2" }
ng-oxigraph = { path = "../oxigraph", version = "0.4.0-alpha.8-ngalpha" }
once_cell = "1.17.1"
regex = "1.8.4"
[target.'cfg(target_family = "wasm")'.dependencies]
ng-oxigraph = { path = "../oxigraph", version = "0.4.0-alpha.8-ngalpha", features = [
"js",
] }
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.3.3"
features = ["wasm_js"]
[target.'cfg(all(not(target_family = "wasm"),not(docsrs)))'.dependencies]
ng-storage-rocksdb = { path = "../storage-rocksdb", version = "0.1.2" }
getrandom = "0.3.3"
[dev-dependencies]
ng-repo = { path = "../repo", version = "0.1.2", features = ["testing"] }