Skip to content

Commit 477318f

Browse files
committed
Release 0.4.0
unm_api_utils@0.4.0 unm_engine@0.4.0 unm_engine_bilibili@0.4.0 unm_engine_joox@0.4.0 unm_engine_kugou@0.4.0 unm_engine_kuwo@0.4.0 unm_engine_migu@0.4.0 unm_engine_pyncm@0.4.0 unm_engine_qq@0.4.0 unm_engine_ytdl@0.4.0 unm_request@0.4.0 unm_rest_api@0.4.0 unm_selector@0.4.0 unm_types@0.4.0 Generated by cargo-workspaces
1 parent 576146d commit 477318f

File tree

18 files changed

+209
-174
lines changed

18 files changed

+209
-174
lines changed

Cargo.lock

Lines changed: 145 additions & 110 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api-utils/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_api_utils"
33
description = "The utilities for developing UnblockNeteaseMusic API."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
edition = "2021"
77
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
88
readme = "./README.md"
@@ -11,11 +11,11 @@ readme = "./README.md"
1111
[dependencies]
1212
concat-idents = "1.1.4"
1313
log = "0.4.17"
14-
unm_engine = { version = "0.3.0", path = "../engine-base" }
15-
unm_engine_bilibili = { version = "0.3.0", path = "../engines/bilibili" }
16-
unm_engine_joox = { version = "0.3.0", path = "../engines/joox" }
17-
unm_engine_kugou = { version = "0.3.0", path = "../engines/kugou" }
18-
unm_engine_kuwo = { version = "0.3.0", path = "../engines/kuwo" }
19-
unm_engine_pyncm = { version = "0.3.0", path = "../engines/pyncm" }
20-
unm_engine_qq = { version = "0.3.0", path = "../engines/qq" }
21-
unm_engine_ytdl = { version = "0.3.0", path = "../engines/ytdl" }
14+
unm_engine = { version = "0.4.0", path = "../engine-base" }
15+
unm_engine_bilibili = { version = "0.4.0", path = "../engines/bilibili" }
16+
unm_engine_joox = { version = "0.4.0", path = "../engines/joox" }
17+
unm_engine_kugou = { version = "0.4.0", path = "../engines/kugou" }
18+
unm_engine_kuwo = { version = "0.4.0", path = "../engines/kuwo" }
19+
unm_engine_pyncm = { version = "0.4.0", path = "../engines/pyncm" }
20+
unm_engine_qq = { version = "0.4.0", path = "../engines/qq" }
21+
unm_engine_ytdl = { version = "0.4.0", path = "../engines/ytdl" }

engine-base/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_engine"
33
description = "The engine base for UnblockNeteaseMusic, including the executor and the Engine trait."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
edition = "2021"
77
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
88
readme = "../README.md"
@@ -14,4 +14,4 @@ async-trait = "0.1.61"
1414
futures = "0.3.25"
1515
log = "0.4.17"
1616
thiserror = "1.0.38"
17-
unm_types = { version = "0.3.0", path = "../types" }
17+
unm_types = { version = "0.4.0", path = "../types" }

engine-demo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ publish = false
1313
futures = "0.3.25"
1414
mimalloc = "0.1.34"
1515
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] }
16-
unm_api_utils = { version = "0.3.0", path = "../api-utils" }
16+
unm_api_utils = { version = "0.4.0", path = "../api-utils" }
1717
unm_test_utils = { version = "0.1.0", path = "../test-utils" }
18-
unm_types = { version = "0.3.0", path = "../types" }
18+
unm_types = { version = "0.4.0", path = "../types" }

engines/bilibili/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_engine_bilibili"
33
description = "The Bilibili engine for UnblockNeteaseMusic."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
77
readme = "../../README.md"
88
edition = "2021"
@@ -14,10 +14,10 @@ async-trait = "0.1.61"
1414
http = "0.2.8"
1515
log = "0.4.17"
1616
serde = { version = "1.0.152", features = ["derive"] }
17-
unm_engine = { version = "0.3.0", path = "../../engine-base" }
18-
unm_request = { version = "0.3.0", path = "../../request" }
19-
unm_selector = { version = "0.3.0", path = "../../selector" }
20-
unm_types = { version = "0.3.0", path = "../../types" }
17+
unm_engine = { version = "0.4.0", path = "../../engine-base" }
18+
unm_request = { version = "0.4.0", path = "../../request" }
19+
unm_selector = { version = "0.4.0", path = "../../selector" }
20+
unm_types = { version = "0.4.0", path = "../../types" }
2121
url = "2.3.1"
2222

2323
[dev-dependencies]

engines/joox/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_engine_joox"
33
description = "The Joox engine for UnblockNeteaseMusic."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
77
readme = "../../README.md"
88
edition = "2021"
@@ -18,10 +18,10 @@ once_cell = "1.17.0"
1818
regex = "1.7.1"
1919
reqwest = { version = "0.11.14", features = ["native-tls-vendored"] }
2020
serde_json = "1.0.91"
21-
unm_engine = { version = "0.3.0", path = "../../engine-base" }
22-
unm_request = { version = "0.3.0", path = "../../request" }
23-
unm_selector = { version = "0.3.0", path = "../../selector" }
24-
unm_types = { version = "0.3.0", path = "../../types" }
21+
unm_engine = { version = "0.4.0", path = "../../engine-base" }
22+
unm_request = { version = "0.4.0", path = "../../request" }
23+
unm_selector = { version = "0.4.0", path = "../../selector" }
24+
unm_types = { version = "0.4.0", path = "../../types" }
2525

2626
[dev-dependencies]
2727
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] }

engines/kugou/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_engine_kugou"
33
description = "The Kugou engine for UnblockNeteaseMusic."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
77
readme = "../../README.md"
88
edition = "2021"
@@ -18,10 +18,10 @@ log = "0.4.17"
1818
reqwest = { version = "0.11.14", features = ["native-tls-vendored"] }
1919
serde = { version = "1.0.152", features = ["derive"] }
2020
serde_json = "1.0.91"
21-
unm_engine = { version = "0.3.0", path = "../../engine-base" }
22-
unm_request = { version = "0.3.0", path = "../../request" }
23-
unm_selector = { version = "0.3.0", path = "../../selector" }
24-
unm_types = { version = "0.3.0", path = "../../types" }
21+
unm_engine = { version = "0.4.0", path = "../../engine-base" }
22+
unm_request = { version = "0.4.0", path = "../../request" }
23+
unm_selector = { version = "0.4.0", path = "../../selector" }
24+
unm_types = { version = "0.4.0", path = "../../types" }
2525

2626
[dev-dependencies]
2727
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] }

engines/kuwo/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_engine_kuwo"
33
description = "The Kuwo engine for UnblockNeteaseMusic."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
77
readme = "../../README.md"
88
edition = "2021"
@@ -18,10 +18,10 @@ log = "0.4.17"
1818
random-string = "1.0.0"
1919
reqwest = { version = "0.11.14", features = ["native-tls-vendored"] }
2020
serde = { version = "1.0.152", features = ["derive"] }
21-
unm_engine = { version = "0.3.0", path = "../../engine-base" }
22-
unm_request = { version = "0.3.0", path = "../../request" }
23-
unm_selector = { version = "0.3.0", path = "../../selector" }
24-
unm_types = { version = "0.3.0", path = "../../types" }
21+
unm_engine = { version = "0.4.0", path = "../../engine-base" }
22+
unm_request = { version = "0.4.0", path = "../../request" }
23+
unm_selector = { version = "0.4.0", path = "../../selector" }
24+
unm_types = { version = "0.4.0", path = "../../types" }
2525

2626
[dev-dependencies]
2727
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] }

engines/migu/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_engine_migu"
33
description = "The Migu engine for UnblockNeteaseMusic."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
77
readme = "../../README.md"
88
edition = "2021"
@@ -15,10 +15,10 @@ http = "0.2.8"
1515
log = "0.4.17"
1616
serde = { version = "1.0.152", features = ["derive"] }
1717
serde_json = "1.0.91"
18-
unm_engine = { version = "0.3.0", path = "../../engine-base" }
19-
unm_request = { version = "0.3.0", path = "../../request" }
20-
unm_selector = { version = "0.3.0", path = "../../selector" }
21-
unm_types = { version = "0.3.0", path = "../../types" }
18+
unm_engine = { version = "0.4.0", path = "../../engine-base" }
19+
unm_request = { version = "0.4.0", path = "../../request" }
20+
unm_selector = { version = "0.4.0", path = "../../selector" }
21+
unm_types = { version = "0.4.0", path = "../../types" }
2222
url = "2.3.1"
2323

2424
[dev-dependencies]

engines/pyncm/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_engine_pyncm"
33
description = "The PyNCM engine for UnblockNeteaseMusic."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
77
readme = "../../README.md"
88
edition = "2021"
@@ -14,9 +14,9 @@ async-trait = "0.1.61"
1414
http = "0.2.8"
1515
log = "0.4.17"
1616
serde = { version = "1.0.152", features = ["derive"] }
17-
unm_engine = { version = "0.3.0", path = "../../engine-base" }
18-
unm_request = { version = "0.3.0", path = "../../request" }
19-
unm_types = { version = "0.3.0", path = "../../types" }
17+
unm_engine = { version = "0.4.0", path = "../../engine-base" }
18+
unm_request = { version = "0.4.0", path = "../../request" }
19+
unm_types = { version = "0.4.0", path = "../../types" }
2020
url = "2.3.1"
2121

2222
[dev-dependencies]

engines/qq/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_engine_qq"
33
description = "The QQ engine for UnblockNeteaseMusic."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
edition = "2021"
77
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
88
readme = "../../README.md"
@@ -23,10 +23,10 @@ reqwest = "0.11.14"
2323
serde = { version = "1.0.152", features = ["derive"] }
2424
serde_json = "1.0.91"
2525
thiserror = "1.0.38"
26-
unm_engine = { version = "0.3.0", path = "../../engine-base" }
27-
unm_request = { version = "0.3.0", path = "../../request" }
28-
unm_selector = { version = "0.3.0", path = "../../selector" }
29-
unm_types = { version = "0.3.0", path = "../../types" }
26+
unm_engine = { version = "0.4.0", path = "../../engine-base" }
27+
unm_request = { version = "0.4.0", path = "../../request" }
28+
unm_selector = { version = "0.4.0", path = "../../selector" }
29+
unm_types = { version = "0.4.0", path = "../../types" }
3030
url = "2.3.1"
3131

3232
[dev-dependencies]

engines/ytdl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_engine_ytdl"
33
description = "The YtDl (youtube-dl, yt-dlp, …) engine for UnblockNeteaseMusic."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
77
readme = "../../README.md"
88
edition = "2021"
@@ -16,8 +16,8 @@ log = "0.4.17"
1616
serde = { version = "1.0.152", features = ["derive"] }
1717
serde_json = "1.0.91"
1818
tokio = { version = "1.24.2", features = ["process"] }
19-
unm_engine = { version = "0.3.0", path = "../../engine-base" }
20-
unm_types = { version = "0.3.0", path = "../../types" }
19+
unm_engine = { version = "0.4.0", path = "../../engine-base" }
20+
unm_types = { version = "0.4.0", path = "../../types" }
2121
winapi = "0.3.9"
2222

2323
[dev-dependencies]

napi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ mimalloc = "0.1.34"
1616
napi = { version = "2.10.9", features = ["full"] }
1717
napi-derive = "2.9.5"
1818
simple_logger = "4.0.0"
19-
unm_api_utils = { version = "0.3.0", path = "../api-utils" }
20-
unm_engine = { version = "0.3.0", path = "../engine-base" }
21-
unm_types = { version = "0.3.0", path = "../types" }
19+
unm_api_utils = { version = "0.4.0", path = "../api-utils" }
20+
unm_engine = { version = "0.4.0", path = "../engine-base" }
21+
unm_types = { version = "0.4.0", path = "../types" }
2222

2323
[build-dependencies]
2424
napi-build = "2.0.1"

request/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_request"
33
description = "The request-related methods for UnblockNeteaseMusic."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
77
readme = "../README.md"
88
edition = "2021"

rest-api/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "unm_rest_api"
33
description = "The RESTful API that can deal with UnblockNeteaseMusic API."
4-
version = "0.3.0"
4+
version = "0.4.0"
55
edition = "2021"
66
license = "LGPL-3.0-or-later"
77
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
@@ -26,8 +26,8 @@ tower = { version = "0.4.13", features = ["buffer", "limit", "load-shed"] }
2626
tower-http = { version = "0.3.5", features = ["cors"] }
2727
tracing = "0.1.37"
2828
tracing-subscriber = "0.3.16"
29-
unm_api_utils = { version = "0.3.0", path = "../api-utils" }
30-
unm_engine = { version = "0.3.0", path = "../engine-base" }
31-
unm_engine_bilibili = { version = "0.3.0", path = "../engines/bilibili" }
32-
unm_types = { version = "0.3.0", path = "../types" }
29+
unm_api_utils = { version = "0.4.0", path = "../api-utils" }
30+
unm_engine = { version = "0.4.0", path = "../engine-base" }
31+
unm_engine_bilibili = { version = "0.4.0", path = "../engines/bilibili" }
32+
unm_types = { version = "0.4.0", path = "../types" }
3333
url = "2.3.1"

selector/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
name = "unm_selector"
33
description = "The algorithm for UnblockNeteaseMusic, determining what Song to return."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
77
readme = "../README.md"
88
edition = "2021"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
unm_types = { version = "0.3.0", path = "../types" }
12+
unm_types = { version = "0.4.0", path = "../types" }
1313

1414
[dev-dependencies]
1515
once_cell = "1.17.0"

test-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ publish = false
1313
futures = "0.3.25"
1414
log = "0.4.17"
1515
simple_logger = "4.0.0"
16-
unm_engine = { version = "0.3.0", path = "../engine-base" }
17-
unm_types = { version = "0.3.0", path = "../types" }
16+
unm_engine = { version = "0.4.0", path = "../engine-base" }
17+
unm_types = { version = "0.4.0", path = "../types" }

types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "unm_types"
33
description = "The type definitions for UnblockNeteaseMusic."
44
license = "LGPL-3.0-or-later"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
77
readme = "../README.md"
88
edition = "2021"

0 commit comments

Comments
 (0)