-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
44 lines (41 loc) · 1.14 KB
/
Cargo.toml
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
[package]
name = "red_oxide"
version = "0.8.2"
edition = "2021"
build = "build.rs"
authors = ["DevYukine [email protected]"]
description = "A simple helper while uploading music to redacted.sh"
homepage = "https://github.com/DevYukine/red_oxide"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "^1.0"
clap = { version = "^4.3", features = ["derive"] }
console = "^0.15"
indicatif = "^0.17"
reqwest = { version = "^0.12", features = ["rustls-tls", "json", "multipart", "stream"], default-features = false }
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
serde_repr = "^0.1"
serde_derive = "^1"
thiserror = "^2"
tokio = { version = "^1", features = ["full"] }
regex = "^1"
audiotags = "^0.5"
env_logger = "^0.11"
log = "^0.4"
num_cpus = "^1.15"
tower = { version = "^0.5", features = ["util", "limit"] }
strum = "^0.26"
strum_macros = "^0.26"
derivative = "^2.2"
claxon = "^0.4"
async-recursion = "^1.0"
lazy_static = "^1.4"
dialoguer = "^0.11"
html-escape = "^0.2"
const_format = "^0.2"
futures-core = "^0.3"
bytes = "^1.5"
futures = "^0.3"
[build-dependencies]
built = "^0.7"