Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
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.
35 lines
1.1 KiB
35 lines
1.1 KiB
[package]
|
|
name = "ngd"
|
|
# version = "0.1.0"
|
|
description = "Daemon of NextGraph, a decentralized, secure and local-first web 3.0 ecosystem based on Semantic Web and CRDTs"
|
|
categories = ["network-programming"]
|
|
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" }
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_bare = "0.5.0"
|
|
serde_bytes = "0.11.7"
|
|
ng-broker = { path = "../ng-broker", version = "0.1.0" }
|
|
ng-net = { path = "../ng-net", version = "0.1.0" }
|
|
ng-repo = { path = "../ng-repo", version = "0.1.0", features = ["server_log_output"] }
|
|
async-std = { version = "1.12.0", features = ["attributes"] }
|
|
log = "0.4"
|
|
env_logger = "0.10"
|
|
clap = { version = "4.3.21", features = ["derive","env","string"] }
|
|
base64-url = "2.0.0"
|
|
serde_json = "1.0"
|
|
regex = "1.8.4"
|
|
lazy_static = "1.4.0"
|
|
addr = "0.15.6"
|
|
zeroize = { version = "1.6.0" } |