[package] name = "nextgraph" description = "NextGraph client library. Nextgraph is a decentralized, secure and local-first web 3.0 ecosystem based on Semantic Web and CRDTs" categories = ["asynchronous","text-editors","web-programming","development-tools","database-implementations"] version = "0.1.0-preview.6" edition.workspace = true license.workspace = true authors.workspace = true repository.workspace = true homepage.workspace = true keywords = [ "crdt","e2ee","local-first","p2p","semantic-web" ] documentation = "https://docs.rs/nextgraph" rust-version.workspace = true [badges] maintenance = { status = "actively-developed" } [dependencies] serde_bare = "0.5.0" serde_json = "1.0" serde_bytes = "0.11.7" base64-url = "2.0.0" once_cell = "1.17.1" zeroize = { version = "1.7.0", features = ["zeroize_derive"] } futures = "0.3.24" async-std = { version = "1.12.0", features = [ "attributes", "unstable" ] } async-trait = "0.1.64" async-once-cell = "0.5.3" lazy_static = "1.4.0" web-time = "0.2.0" qrcode = { version = "0.14.1", default-features = false, features = ["svg"] } ng-repo = { path = "../ng-repo", version = "0.1.0-preview.1" } ng-net = { path = "../ng-net", version = "0.1.0-preview.1" } ng-wallet = { path = "../ng-wallet", version = "0.1.0-preview.5" } ng-client-ws = { path = "../ng-client-ws", version = "0.1.0-preview.1" } ng-verifier = { path = "../ng-verifier", version = "0.1.0-preview.5" } [target.'cfg(all(not(target_family = "wasm"),not(docsrs)))'.dependencies] ng-storage-rocksdb = { path = "../ng-storage-rocksdb", version = "0.1.0-preview.6" } [[example]] name = "in_memory" required-features = [] [[example]] name = "persistent" required-features = [] [[example]] name = "open" required-features = []