-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (38 loc) · 1 KB
/
Cargo.toml
File metadata and controls
51 lines (38 loc) · 1 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
[package]
name = "reqly"
version = "0.1.0"
edition = "2024"
description = "A terminal-based HTTP/GraphQL/WebSocket API client (Postman for the terminal)"
authors = ["Ajay Kumar"]
[[bin]]
name = "reqly"
path = "src/main.rs"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP client
reqwest = { version = "0.12", features = ["json", "gzip", "deflate"] }
# CLI argument parsing
clap = { version = "4", features = ["derive", "color"] }
# TUI
ratatui = "0.29"
crossterm = { version = "0.28", features = ["event-stream"] }
# Serialization / JSON
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Error handling
anyhow = "1"
thiserror = "2"
# Terminal color output (CLI mode)
colored = "2"
# WebSocket support
tokio-tungstenite = { version = "0.26", features = ["native-tls"] }
futures-util = "0.3"
# Clipboard
arboard = "3.3"
# Storage
rusqlite = { version = "0.31", features = ["bundled"] }
dirs = "5.0"
[dev-dependencies]
# HTTP mocking for tests
wiremock = "0.6"