-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (48 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
63 lines (48 loc) · 1.19 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
[package]
name = "switchboard-cli"
version = "0.1.21"
edition = "2024"
description = "A standalone CLI for interacting with Switchboard GraphQL instances"
license = "MIT"
[[bin]]
name = "switchboard"
path = "src/main.rs"
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP client
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Interactive prompts
dialoguer = "0.11"
# Output formatting
comfy-table = "7"
colored = "3"
# SVG → PNG rasterization
resvg = "0.44"
usvg = "0.44"
tiny-skia = "0.11"
# Config directories
dirs = "6"
# Error handling
anyhow = "1"
thiserror = "2"
# .phd file support (ZIP archives)
zip = "2"
# Shell completions
clap_complete = "4"
# WebSocket support (subscriptions)
tokio-tungstenite = { version = "0.26", features = ["rustls-tls-webpki-roots"] }
futures-util = "0.3"
url = "2"
# Interactive REPL (readline, history, tab completion)
rustyline = "15"
# Self-update (download + extract + replace binary)
self-replace = "1"
flate2 = "1"
tar = "0.4"