-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (27 loc) · 731 Bytes
/
Cargo.toml
File metadata and controls
35 lines (27 loc) · 731 Bytes
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
[package]
name = "ps4-pkg-manager"
version = "0.1.0"
edition = "2024"
[dependencies]
# TUI interface
ratatui = "0.26"
crossterm = "0.27"
# Simple HTTP client (no OpenSSL dependency)
ureq = { version = "2.9", features = ["json"] }
# File system and path handling
walkdir = "2.5"
# JSON parsing
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "2.5"
# CLI argument parsing
clap = { version = "4.0", features = ["derive"] }
# Async runtime (simpler approach)
tokio = { version = "1.0", features = ["full"] }
# Terminal formatting
console = "0.15"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
hyper = { version = "0.14", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }