-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (61 loc) · 1.85 KB
/
Cargo.toml
File metadata and controls
80 lines (61 loc) · 1.85 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
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "wavedash"
version = "0.1.69"
edition = "2021"
authors = ["Wavedash Team"]
description = "Cross-platform CLI tool for uploading game projects to wavedash.com"
license = "MIT"
repository = "https://github.com/wvdsh/cli"
homepage = "https://wavedash.com"
readme = "README.md"
keywords = ["cli", "gaming", "upload", "wavedash"]
categories = ["command-line-utilities", "games"]
[[bin]]
name = "wavedash"
path = "src/main.rs"
[dependencies]
# CLI Framework
clap = { version = "4.5", features = ["derive", "env"] }
# Async Runtime
tokio = { version = "1.40", features = ["full"] }
futures = "0.3"
# HTTP & Servers
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "multipart", "rustls-tls-webpki-roots-no-provider", "http2"] }
axum = { version = "0.7" }
axum-server = { version = "0.7", features = ["tls-rustls-no-provider"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "fs", "trace"] }
rcgen = { version = "0.14", default-features = false, features = ["crypto", "pem", "ring"] }
cliclack = "0.5"
dialoguer = "0.11"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Error Handling
anyhow = "1.0"
# Progress & UI
indicatif = "0.17"
colored = "3"
# Cross-platform paths
directories = "5.0"
# Object storage uploads
opendal = { version = "0.49", features = ["services-s3"] }
# File operations
walkdir = "2.5"
mime_guess = "2.0"
# Authentication
tiny_http = "0.12"
open = "5.0"
url = "2.5"
urlencoding = "2.1"
# Update checking
self_update = { version = "0.44", features = ["archive-tar", "compression-flate2"] }
[build-dependencies]
dotenvy = "0.15"
[dev-dependencies]
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"