-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (57 loc) · 1.57 KB
/
Copy pathCargo.toml
File metadata and controls
69 lines (57 loc) · 1.57 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
[workspace]
resolver = "2"
members = [
"crates/ttsync-contract",
"crates/ttsync-core",
"crates/ttsync-fs",
"crates/ttsync-http",
"crates/ttsync-client",
"crates/ttsync-cli",
]
[workspace.package]
version = "2.3.1"
edition = "2024"
license = "MIT"
repository = "https://github.com/Darkatse/TT-Sync"
[workspace.dependencies]
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP
axum = "0.8"
axum-server = { version = "0.8", features = ["tls-rustls"] }
reqwest = { version = "0.13", default-features = false, features = ["rustls", "http2", "json", "stream"] }
# TLS & crypto
rustls = "0.23"
rcgen = "0.13"
ed25519-dalek = { version = "2", features = ["rand_core"] }
sha2 = "0.10"
hmac = "0.12"
rand = "0.9"
base64 = "0.22"
webpki-roots = "1"
# File system
filetime = "0.2"
# CLI
clap = { version = "4", features = ["derive"] }
indicatif = "0.17"
comfy-table = "7"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Error handling
thiserror = "2"
# Utilities
uuid = { version = "1", features = ["v4"] }
url = "2"
# Optional
blake3 = "1"
# Internal crates
ttsync-contract = { path = "crates/ttsync-contract", version = "2.3.1" }
ttsync-core = { path = "crates/ttsync-core", version = "2.3.1" }
ttsync-fs = { path = "crates/ttsync-fs", version = "2.3.1" }
ttsync-http = { path = "crates/ttsync-http", version = "2.3.1", default-features = false }
ttsync-client = { path = "crates/ttsync-client", version = "2.3.1" }