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

18 files changed

Lines changed: 209 additions & 174 deletions

File tree

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]

0 commit comments

Comments
 (0)