-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (45 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (45 loc) · 1.28 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
[workspace]
resolver = "3"
members = ["protocol", "core", "client", "cli", "relay", "gui", "mobile"]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/haribo/plain-note"
authors = []
[workspace.dependencies]
# Internal
note-core = { path = "core" }
note-protocol = { path = "protocol" }
note-relay = { path = "relay" }
plain-note-client = { path = "client" }
# CLI
clap = { version = "4", features = ["derive"] }
# Async runtime / networking
tokio = { version = "1", features = ["full"] }
axum = { version = "0.8", features = ["ws"] }
tokio-tungstenite = "0.30"
futures-util = "0.3"
# Encoding
base64 = "0.23"
hex = "0.4"
# HTTP client (CLI enrollment)
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Errors / logging
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# CRDT
automerge = "0.5"
# Mobile bindings (Android via UniFFI)
uniffi = "0.28"
# Crypto (AEAD + KDF + signatures)
chacha20poly1305 = { version = "0.10", features = ["std"] }
argon2 = "0.5"
ed25519-dalek = "3"
getrandom = "0.4"
zeroize = { version = "1", features = ["derive"] }