-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (68 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
81 lines (68 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[workspace]
members = [
"nodedb-lite",
"nodedb-lite-ffi",
"nodedb-lite-wasm",
]
resolver = "2"
[workspace.package]
version = "0.0.0-beta.1"
edition = "2024"
rust-version = "1.94"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/NodeDB-Lab/nodedb-lite"
homepage = "https://nodedb.dev"
[workspace.dependencies]
# Internal
nodedb-lite = { path = "nodedb-lite", version = "0.0.0-beta.1", default-features = false }
nodedb-types = { version = "0.0.0-beta.1" }
nodedb-client = { version = "0.0.0-beta.1" }
nodedb-codec = { version = "0.0.0-beta.1" }
nodedb-crdt = { version = "0.0.0-beta.1" }
nodedb-query = { version = "0.0.0-beta.1" }
nodedb-spatial = { version = "0.0.0-beta.1" }
nodedb-graph = { version = "0.0.0-beta.1" }
nodedb-vector = { version = "0.0.0-beta.1" }
nodedb-fts = { version = "0.0.0-beta.1" }
nodedb-strict = { version = "0.0.0-beta.1" }
nodedb-columnar = { version = "0.0.0-beta.1" }
nodedb-sql = { version = "0.0.0-beta.1" }
# Async
tokio = { version = "1" }
tokio-tungstenite = "0.29"
futures = "0.3"
async-trait = "0.1"
# Error handling
thiserror = "2.0"
tracing = "0.1"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sonic-rs = "0.5"
zerompk = { version = "0.3", features = ["std", "derive"] }
# Storage
redb = "2"
roaring = "0.11"
arrow = { version = "58", default-features = false, features = ["ipc"] }
crc32c = "0.6"
# CRDTs
loro = "1"
# WASM runtime
wasmtime = { version = "30", default-features = false, features = ["cranelift", "runtime"] }
# Crypto
aes-gcm = "0.10"
argon2 = "0.5"
zeroize = { version = "1", features = ["derive"] }
getrandom = { version = "0.3", features = ["std"] }
# Testing
tempfile = "3"
rust_decimal = { version = "1", features = ["serde-with-str"] }
# WASM bindings
wasm-bindgen = "0.2"
js-sys = "0.3"
serde-wasm-bindgen = "0.6"
[profile.dev]
debug = "line-tables-only"
[profile.dev.package."*"]
debug = false