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.
52 lines
1.5 KiB
52 lines
1.5 KiB
2 years ago
|
[package]
|
||
7 months ago
|
name = "ng-net"
|
||
|
# version = "0.1.0"
|
||
|
description = "Network library 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" }
|
||
2 years ago
|
|
||
|
[dependencies]
|
||
7 months ago
|
ng-repo = { path = "../ng-repo", version = "0.1.0" }
|
||
2 years ago
|
serde = { version = "1.0", features = ["derive"] }
|
||
|
serde_bare = "0.5.0"
|
||
|
serde_bytes = "0.11.7"
|
||
|
num_enum = "0.5.7"
|
||
|
async-broadcast = "0.4.1"
|
||
|
futures = "0.3.24"
|
||
2 years ago
|
async-trait = "0.1.64"
|
||
2 years ago
|
blake3 = "1.3.1"
|
||
|
async-std = { version = "1.12.0", features = ["attributes","unstable"] }
|
||
|
wasm-bindgen = "0.2"
|
||
2 years ago
|
unique_id = "0.1.5"
|
||
|
once_cell = "1.17.1"
|
||
1 year ago
|
noise-protocol = "0.2.0-rc1"
|
||
|
noise-rust-crypto = "0.6.0-rc.1"
|
||
2 years ago
|
ed25519-dalek = "1.0.1"
|
||
1 year ago
|
either = "1.8.1"
|
||
1 year ago
|
url = "2.4.0"
|
||
1 year ago
|
base64-url = "2.0.0"
|
||
1 year ago
|
web-time = "0.2.0"
|
||
2 years ago
|
|
||
1 year ago
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||
1 year ago
|
reqwest = { version = "0.11.18", features = ["json","native-tls-vendored"] }
|
||
1 year ago
|
|
||
2 years ago
|
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
|
||
|
version = "0.2.7"
|
||
|
features = ["js"]
|
||
|
|
||
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||
1 year ago
|
getrandom = "0.2.7"
|
||
1 year ago
|
default-net = { git = "https://git.nextgraph.org/NextGraph/default-net.git" }
|
||
7 months ago
|
# ng-stores-rocksdb = { path = "../ng-stores-rocksdb", version = "0.1.0" }
|