-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1 KB
/
Cargo.toml
File metadata and controls
42 lines (39 loc) · 1 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
[package]
name = "scatter-net"
version = "0.1.0-2"
edition = "2021"
description = "Secure data sharing library for peer-to-peer systems"
license = "GPL-3.0-or-later"
[dependencies]
anyhow = { version = "1.0.100", features = ["backtrace"] }
bitcode = { version = "0.6.9", features = ["serde"] }
bytes = { version = "1.11.0", features = ["serde"] }
chrono = "0.4.42"
iroh = { version = "0.95.1", features = [
"discovery-local-network",
"discovery-pkarr-dht",
] }
n0-error = "0.1.2"
n0-future = "0.3.1"
parking_lot = { version = "0.12.5", features = ["arc_lock"] }
ps-buffer = "0.1.0-21"
ps-cypher = "0.1.0-26"
ps-datachunk = "0.1.0-34"
ps-datalake = "0.1.0-14"
ps-deflate = "0.1.0-16"
ps-hash = "0.1.0-24"
ps-hkey = "0.1.0-32"
ps-promise = "0.1.0-14"
ps-range = "0.1.0-3"
ps-rwt = "0.1.0-2"
ps-str = "0.1.0-3"
rand = "0.9.2"
serde = { version = "1.0.228", features = ["serde_derive"] }
serde_json = "1.0.147"
thiserror = "2.0.17"
tokio = "1.48.0"
toml = "0.9.10"
[profile.dev]
opt-level = 3
[profile.release]
opt-level = 3