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.
50 lines
1.5 KiB
50 lines
1.5 KiB
[package]
|
|
name = "ng-sdk-js"
|
|
# version = "0.1.0"
|
|
description = "JS app sdk of NextGraph"
|
|
publish = false
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license = "MIT/Apache-2.0"
|
|
authors.workspace = true
|
|
repository = "https://git.nextgraph.org/NextGraph/nextgraph-rs"
|
|
homepage = "https://nextgraph.org"
|
|
keywords.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_bare = "0.5.0"
|
|
serde_bytes = "0.11.7"
|
|
serde_json = "1.0"
|
|
async-std = { version = "1.12.0", features = ["attributes","unstable"] }
|
|
once_cell = "1.17.1"
|
|
getrandom = { version = "0.1.1", features = ["wasm-bindgen"] }
|
|
rand = { version = "0.7", features = ["getrandom"] }
|
|
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
|
|
ng-repo = { path = "../ng-repo" }
|
|
ng-net = { path = "../ng-net" }
|
|
ng-client-ws = { path = "../ng-client-ws" }
|
|
ng-wallet = { path = "../ng-wallet" }
|
|
nextgraph = { path = "../nextgraph" }
|
|
oxrdf = { git = "https://git.nextgraph.org/NextGraph/oxigraph.git", branch="main", features = ["rdf-star", "oxsdatatypes"] }
|
|
# [target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
|
|
# version = "0.2.7"
|
|
# features = ["js"]
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
js-sys = "0.3.61"
|
|
serde-wasm-bindgen = "0.6"
|
|
wasm-bindgen-futures = "0.4.34"
|
|
gloo-timers = "0.2.6"
|
|
# web-sys = { version = "0.3.61", features = ["Window"] }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "^0.3" |