-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (51 loc) · 1.55 KB
/
Cargo.toml
File metadata and controls
61 lines (51 loc) · 1.55 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.1.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/remikalbe/siphon"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
futures-util = "0.3"
# TLS
tokio-rustls = "0.26"
rustls = { version = "0.23", features = ["ring"] }
rustls-pemfile = "2"
# HTTP
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
http-body-util = "0.1"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.9"
# HTTP client (for Cloudflare API)
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
# CLI
clap = { version = "4", features = ["derive"] }
# Utilities
uuid = { version = "1", features = ["v4"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "2"
anyhow = "1"
dashmap = "6"
bytes = "1"
parking_lot = "0.12"
async-trait = "0.1"
# TUI
ratatui = "0.30.0"
crossterm = { version = "0.29.0", features = ["event-stream"] }
chrono = "0.4"
dirs = "6.0.0"
shellexpand = "3"
rustyline = "17.0.2"
# Workspace crates (version required for crates.io publishing)
siphon-protocol = { path = "crates/siphon-protocol", version = "0.1.0" }
siphon-common = { path = "crates/siphon-common", version = "0.1.0" }
siphon-secrets = { path = "crates/siphon-secrets", version = "0.1.0" }
siphon-tui = { path = "crates/siphon-tui", version = "0.1.1" }