-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (57 loc) · 1.68 KB
/
Cargo.toml
File metadata and controls
72 lines (57 loc) · 1.68 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
[workspace]
resolver = "2"
members = [
"apps/tauri",
"apps/server",
"crates/*",
]
[workspace.package]
version = "3.0.0"
edition = "2021"
license = "AGPL-3.0"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "warn"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Database
diesel = { version = "2.2", features = ["sqlite", "chrono", "r2d2", "numeric", "returning_clauses_for_sqlite_3_35"] }
diesel_migrations = { version = "2.2", features = ["sqlite"] }
rusqlite = { version = "0.34", features = ["bundled"] }
r2d2 = "0.8"
# Time
chrono = { version = "0.4", features = ["serde"] }
# HTTP
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Error handling
thiserror = "1"
anyhow = "1"
# IDs
uuid = { version = "1", features = ["v4", "v7", "serde"] }
# Numbers
rust_decimal = { version = "1.39", features = ["maths", "serde-float"] }
rust_decimal_macros = "1.39"
num-traits = "0.2"
# Async
async-trait = "0.1"
futures = "0.3"
# Logging
log = "0.4"
# Crypto
chacha20poly1305 = { version = "0.10", features = ["std"] }
x25519-dalek = { version = "2", features = ["static_secrets"] }
hkdf = "0.12"
sha2 = "0.10"
rand = "0.8"
# Internal crates
sensible-folio-market-data = { path = "crates/market-data" }
sensible-folio-core = { path = "crates/core" }
sensible-folio-connect = { path = "crates/connect" }
sensible-folio-storage-sqlite = { path = "crates/storage-sqlite" }
sensible-folio-device-sync = { path = "crates/device-sync" }
sensible-folio-ai = { path = "crates/ai" }