|
|
|
[package]
|
|
|
|
name = "ng-verifier"
|
|
|
|
# version = "0.1.0"
|
|
|
|
description = "Verifier library of NextGraph"
|
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
keywords.workspace = true
|
|
|
|
documentation.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
testing = []
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
ng-repo = { path = "../ng-repo", version = "0.1.0" }
|
|
|
|
ng-net = { path = "../ng-net", version = "0.1.0" }
|
|
|
|
blake3 = "1.3.1"
|
|
|
|
chacha20 = "0.9.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_bare = "0.5.0"
|
|
|
|
serde_bytes = "0.11.7"
|
|
|
|
oxigraph = { git = "https://git.nextgraph.org/NextGraph/oxigraph.git", branch="main" }
|
|
|
|
automerge = "0.5.9"
|
|
|
|
yrs = "0.18.2"
|
|
|
|
async-std = { version = "1.12.0", features = [ "attributes", "unstable" ] }
|
|
|
|
threshold_crypto = "0.4.0"
|
|
|
|
rand = { version = "0.7", features = ["getrandom"] }
|
|
|
|
web-time = "0.2.0"
|
|
|
|
either = "1.8.1"
|
|
|
|
futures = "0.3.24"
|
|
|
|
async-trait = "0.1.64"
|
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
ng-storage-rocksdb = { path = "../ng-storage-rocksdb", version = "0.1.0" }
|
|
|
|
getrandom = "0.2.7"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
ng-repo = { path = "../ng-repo", version = "0.1.0", features = ["testing"] }
|