-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
31 lines (29 loc) · 912 Bytes
/
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
[package]
name = "ncmapi"
version = "0.1.13"
authors = ["akatsuki <[email protected]>"]
edition = "2018"
description = "NetEase Cloud Music API for Rust."
license = "MIT"
homepage = "https://github.com/two-mountains/ncmapi-rs"
documentation = "https://docs.rs/ncmapi"
repository = "https://github.com/two-mountains/ncmapi-rs"
readme = "README.md"
keywords = ["netease-cloud-muisc", "api"]
categories = ["api-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["json", "cookies"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_repr = "0.1"
serde_json = "1.0"
openssl = "0.10"
hex = "0.4"
rand = "0.8"
base64 = "0.13"
memory-cache-rs = "0.2.0"
cookie = "0.15"
regex = "1.5"
phf = { version = "0.9", features = ["macros"] }
thiserror = "1"