-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (33 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
34 lines (33 loc) · 1.26 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
[package]
name = "unm_rest_api"
description = "The RESTful API that can deal with UnblockNeteaseMusic API."
version = "0.4.0"
edition = "2021"
license = "LGPL-3.0-or-later"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "./README.md"
include = ["src/**/*", "README.md", "docs/api.md", "docs/configure.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.72"
axum = "0.6.19"
bytes = "1.4.0"
futures = "0.3.28"
http = "0.2.9"
mimalloc = "0.1.37"
once_cell = "1.18.0"
reqwest = { version = "0.11.18", features = ["native-tls-vendored", "gzip", "deflate", "brotli", "stream"] }
serde = { version = "1.0.180", features = ["derive"] }
serde_json = "1.0.104"
thiserror = "1.0.44"
tokio = { version = "1.29.1", features = ["full"] }
toml = "0.7.8"
tower = { version = "0.4.13", features = ["buffer", "limit", "load-shed"] }
tower-http = { version = "0.3.5", features = ["cors"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
unm_api_utils = { version = "0.4.0", path = "../api-utils" }
unm_engine = { version = "0.4.0", path = "../engine-base" }
unm_engine_bilibili = { version = "0.4.0", path = "../engines/bilibili" }
unm_types = { version = "0.4.0", path = "../types" }
url = "2.4.0"