-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
21 lines (20 loc) · 939 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "unm_api_utils"
description = "The utilities for developing UnblockNeteaseMusic API."
license = "LGPL-3.0-or-later"
version = "0.4.0"
edition = "2021"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "./README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
concat-idents = "1.1.5"
log = "0.4.19"
unm_engine = { version = "0.4.0", path = "../engine-base" }
unm_engine_bilibili = { version = "0.4.0", path = "../engines/bilibili" }
unm_engine_joox = { version = "0.4.0", path = "../engines/joox" }
unm_engine_kugou = { version = "0.4.0", path = "../engines/kugou" }
unm_engine_kuwo = { version = "0.4.0", path = "../engines/kuwo" }
unm_engine_pyncm = { version = "0.4.0", path = "../engines/pyncm" }
unm_engine_qq = { version = "0.4.0", path = "../engines/qq" }
unm_engine_ytdl = { version = "0.4.0", path = "../engines/ytdl" }