-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
100 lines (85 loc) · 2.42 KB
/
Copy pathCargo.toml
File metadata and controls
100 lines (85 loc) · 2.42 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[workspace]
members = ["nodedb-lite", "nodedb-lite-ffi", "nodedb-lite-wasm"]
resolver = "2"
[workspace.package]
version = "0.1.0"
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.1.0", default-features = false }
nodedb-types = { version = "0.5" }
nodedb-client = { version = "0.5" }
nodedb-codec = { version = "0.5" }
nodedb-crdt = { version = "0.5" }
nodedb-query = { version = "0.5" }
nodedb-spatial = { version = "0.5" }
nodedb-graph = { version = "0.5" }
nodedb-vector = { version = "0.5" }
nodedb-fts = { version = "0.5" }
nodedb-strict = { version = "0.5" }
nodedb-columnar = { version = "0.5" }
nodedb-sql = { version = "0.5" }
nodedb-array = { version = "0.5" }
nodedb-physical = { version = "0.5" }
# 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.6", features = ["std", "derive"] }
# Storage
pagedb = { version = "0", default-features = false }
# Matches the `Bytes` type pagedb's txn API returns; must track pagedb's own
# `bytes` major so the two resolve to one version and stay assignable.
bytes = "1"
roaring = "0.11"
lru = "0.12"
arrow = { version = "59", 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"] }
tokio-postgres = { version = "0.7", features = ["with-serde_json-1"] }
# WASM bindings
wasm-bindgen = "0.2"
js-sys = "0.3"
serde-wasm-bindgen = "0.6"
[profile.dev]
debug = "line-tables-only"
# Strip symbol tables from dev/test binaries to keep target/ small. This
# unsymbolises ordinary dev builds; use `--profile debugging` for full symbols.
strip = true
[profile.dev.package."*"]
debug = false
[profile.debugging]
inherits = "dev"
debug = true
strip = false
[profile.ci]
inherits = "dev"
debug = false
incremental = false