Skip to content

Commit

Permalink
Release 0.3.0-pre.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pan93412 committed Apr 24, 2022
1 parent f35f2d4 commit 9869911
Show file tree
Hide file tree
Showing 18 changed files with 74 additions and 74 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions api-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ publish = false
[dependencies]
concat-idents = "1.1.3"
log = "0.4.16"
unm_engine = { version = "0.2.0-pre.4", path = "../engine-base" }
unm_engine_bilibili = { version = "0.2.0-pre.2", path = "../engines/bilibili" }
unm_engine_joox = { version = "0.2.0-pre.5", path = "../engines/joox" }
unm_engine_kugou = { version = "0.2.0-pre.2", path = "../engines/kugou" }
unm_engine_kuwo = { version = "0.2.0-pre.2", path = "../engines/kuwo" }
unm_engine_migu = { version = "0.2.0-pre.2", path = "../engines/migu" }
unm_engine_pyncm = { version = "0.2.0-pre.2", path = "../engines/pyncm" }
unm_engine_qq = { version = "0.1.0", path = "../engines/qq" }
unm_engine_ytdl = { version = "0.2.0-pre.5", path = "../engines/ytdl" }
unm_engine = { version = "0.3.0-pre.0", path = "../engine-base" }
unm_engine_bilibili = { version = "0.3.0-pre.0", path = "../engines/bilibili" }
unm_engine_joox = { version = "0.3.0-pre.0", path = "../engines/joox" }
unm_engine_kugou = { version = "0.3.0-pre.0", path = "../engines/kugou" }
unm_engine_kuwo = { version = "0.3.0-pre.0", path = "../engines/kuwo" }
unm_engine_migu = { version = "0.3.0-pre.0", path = "../engines/migu" }
unm_engine_pyncm = { version = "0.3.0-pre.0", path = "../engines/pyncm" }
unm_engine_qq = { version = "0.3.0-pre.0", path = "../engines/qq" }
unm_engine_ytdl = { version = "0.3.0-pre.0", path = "../engines/ytdl" }
4 changes: 2 additions & 2 deletions engine-base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unm_engine"
description = "The engine base for UnblockNeteaseMusic, including the executor and the Engine trait."
license = "LGPL-3.0-or-later"
version = "0.2.0-pre.4"
version = "0.3.0-pre.0"
edition = "2021"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "../README.md"
Expand All @@ -15,4 +15,4 @@ async-trait = "0.1.53"
futures = "0.3.21"
log = "0.4.16"
thiserror = "1.0.30"
unm_types = { version = "0.2.0-pre.1", path = "../types" }
unm_types = { version = "0.3.0-pre.0", path = "../types" }
2 changes: 1 addition & 1 deletion engine-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ publish = false
unm_test_utils = { version = "0.1.0", path = "../test-utils" }
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread"] }
futures = "0.3.21"
unm_types = { version = "0.2.0-pre.1", path = "../types" }
unm_types = { version = "0.3.0-pre.0", path = "../types" }
mimalloc = "0.1.28"
unm_api_utils = { version = "0.1.0", path = "../api-utils" }
10 changes: 5 additions & 5 deletions engines/bilibili/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unm_engine_bilibili"
description = "The Bilibili engine for UnblockNeteaseMusic."
license = "LGPL-3.0-or-later"
version = "0.2.0-pre.2"
version = "0.3.0-pre.0"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "../../README.md"
edition = "2021"
Expand All @@ -13,10 +13,10 @@ edition = "2021"
anyhow = "1.0.57"
async-trait = "0.1.53"
http = "0.2.6"
unm_engine = { version = "0.2.0-pre.1", path = "../../engine-base" }
unm_request = { version = "0.2.0-pre.1", path = "../../request" }
unm_selector = { version = "0.2.0-pre.1", path = "../../selector" }
unm_types = { version = "0.2.0-pre.1", path = "../../types" }
unm_engine = { version = "0.3.0-pre.0", path = "../../engine-base" }
unm_request = { version = "0.3.0-pre.0", path = "../../request" }
unm_selector = { version = "0.3.0-pre.0", path = "../../selector" }
unm_types = { version = "0.3.0-pre.0", path = "../../types" }
url = "2.2.2"
log = "0.4.16"
serde = { version = "1.0.136", features = ["derive"] }
Expand Down
10 changes: 5 additions & 5 deletions engines/joox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unm_engine_joox"
description = "The Joox engine for UnblockNeteaseMusic."
license = "LGPL-3.0-or-later"
version = "0.2.0-pre.5"
version = "0.3.0-pre.0"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "../../README.md"
edition = "2021"
Expand All @@ -19,10 +19,10 @@ once_cell = "1.10.0"
regex = "1.5.5"
reqwest = { version = "0.11.10", features = ["native-tls-vendored"] }
serde_json = "1.0.79"
unm_engine = { version = "0.2.0-pre.1", path = "../../engine-base" }
unm_request = { version = "0.2.0-pre.1", path = "../../request" }
unm_selector = { version = "0.2.0-pre.1", path = "../../selector" }
unm_types = { version = "0.2.0-pre.1", path = "../../types" }
unm_engine = { version = "0.3.0-pre.0", path = "../../engine-base" }
unm_request = { version = "0.3.0-pre.0", path = "../../request" }
unm_selector = { version = "0.3.0-pre.0", path = "../../selector" }
unm_types = { version = "0.3.0-pre.0", path = "../../types" }

[dev-dependencies]
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread"] }
Expand Down
10 changes: 5 additions & 5 deletions engines/kugou/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unm_engine_kugou"
description = "The Kugou engine for UnblockNeteaseMusic."
license = "LGPL-3.0-or-later"
version = "0.2.0-pre.2"
version = "0.3.0-pre.0"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "../../README.md"
edition = "2021"
Expand All @@ -17,10 +17,10 @@ serde_json = "1.0.79"
serde = { version = "1.0.136", features = ["derive"] }
reqwest = { version = "0.11.10", features = ["native-tls-vendored"] }
futures = "0.3.21"
unm_engine = { version = "0.2.0-pre.1", path = "../../engine-base" }
unm_request = { version = "0.2.0-pre.1", path = "../../request" }
unm_selector = { version = "0.2.0-pre.1", path = "../../selector" }
unm_types = { version = "0.2.0-pre.1", path = "../../types" }
unm_engine = { version = "0.3.0-pre.0", path = "../../engine-base" }
unm_request = { version = "0.3.0-pre.0", path = "../../request" }
unm_selector = { version = "0.3.0-pre.0", path = "../../selector" }
unm_types = { version = "0.3.0-pre.0", path = "../../types" }
log = "0.4.16"
concat-string = "1.0.1"

Expand Down
10 changes: 5 additions & 5 deletions engines/kuwo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unm_engine_kuwo"
description = "The Kuwo engine for UnblockNeteaseMusic."
license = "LGPL-3.0-or-later"
version = "0.2.0-pre.2"
version = "0.3.0-pre.0"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "../../README.md"
edition = "2021"
Expand All @@ -19,10 +19,10 @@ log = "0.4.16"
random-string = "1.0.0"
reqwest = { version = "0.11.10", features = ["native-tls-vendored"] }
serde = { version = "1.0.136", features = ["derive"] }
unm_engine = { version = "0.2.0-pre.1", path = "../../engine-base" }
unm_request = { version = "0.2.0-pre.1", path = "../../request" }
unm_selector = { version = "0.2.0-pre.1", path = "../../selector" }
unm_types = { version = "0.2.0-pre.1", path = "../../types" }
unm_engine = { version = "0.3.0-pre.0", path = "../../engine-base" }
unm_request = { version = "0.3.0-pre.0", path = "../../request" }
unm_selector = { version = "0.3.0-pre.0", path = "../../selector" }
unm_types = { version = "0.3.0-pre.0", path = "../../types" }

[dev-dependencies]
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread"] }
Expand Down
10 changes: 5 additions & 5 deletions engines/migu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unm_engine_migu"
description = "The Migu engine for UnblockNeteaseMusic."
license = "LGPL-3.0-or-later"
version = "0.2.0-pre.2"
version = "0.3.0-pre.0"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "../../README.md"
edition = "2021"
Expand All @@ -16,10 +16,10 @@ http = "0.2.6"
serde_json = "1.0.79"
serde = { version = "1.0.136", features = ["derive"] }
url = "2.2.2"
unm_engine = { version = "0.2.0-pre.1", path = "../../engine-base" }
unm_request = { version = "0.2.0-pre.1", path = "../../request" }
unm_selector = { version = "0.2.0-pre.1", path = "../../selector" }
unm_types = { version = "0.2.0-pre.1", path = "../../types" }
unm_engine = { version = "0.3.0-pre.0", path = "../../engine-base" }
unm_request = { version = "0.3.0-pre.0", path = "../../request" }
unm_selector = { version = "0.3.0-pre.0", path = "../../selector" }
unm_types = { version = "0.3.0-pre.0", path = "../../types" }
log = "0.4.16"

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions engines/pyncm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unm_engine_pyncm"
description = "The PyNCM engine for UnblockNeteaseMusic."
license = "LGPL-3.0-or-later"
version = "0.2.0-pre.2"
version = "0.3.0-pre.0"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "../../README.md"
edition = "2021"
Expand All @@ -14,8 +14,8 @@ anyhow = "1.0.57"
async-trait = "0.1.53"
http = "0.2.6"
serde = { version = "1.0.136", features = ["derive"] }
unm_engine = { version = "0.2.0-pre.1", path = "../../engine-base" }
unm_request = { version = "0.2.0-pre.1", path = "../../request" }
unm_types = { version = "0.2.0-pre.1", path = "../../types" }
unm_engine = { version = "0.3.0-pre.0", path = "../../engine-base" }
unm_request = { version = "0.3.0-pre.0", path = "../../request" }
unm_types = { version = "0.3.0-pre.0", path = "../../types" }
url = "2.2.2"
log = "0.4.16"
10 changes: 5 additions & 5 deletions engines/qq/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unm_engine_qq"
description = "The QQ engine for UnblockNeteaseMusic."
license = "LGPL-3.0-or-later"
version = "0.1.0"
version = "0.3.0-pre.0"
edition = "2021"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "../../README.md"
Expand All @@ -18,10 +18,10 @@ serde = { version = "1.0.136", features = ["derive"] }
reqwest = "0.11.10"
futures = "0.3.21"
url = "2.2.2"
unm_engine = { version = "0.2.0-pre.1", path = "../../engine-base" }
unm_request = { version = "0.2.0-pre.1", path = "../../request" }
unm_selector = { version = "0.2.0-pre.1", path = "../../selector" }
unm_types = { version = "0.2.0-pre.1", path = "../../types" }
unm_engine = { version = "0.3.0-pre.0", path = "../../engine-base" }
unm_request = { version = "0.3.0-pre.0", path = "../../request" }
unm_selector = { version = "0.3.0-pre.0", path = "../../selector" }
unm_types = { version = "0.3.0-pre.0", path = "../../types" }
log = "0.4.16"
derive_builder = "0.11.2"
thiserror = "1.0.30"
Expand Down
6 changes: 3 additions & 3 deletions engines/ytdl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unm_engine_ytdl"
description = "The YtDl (youtube-dl, yt-dlp, …) engine for UnblockNeteaseMusic."
license = "LGPL-3.0-or-later"
version = "0.2.0-pre.5"
version = "0.3.0-pre.0"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "../../README.md"
edition = "2021"
Expand All @@ -11,8 +11,8 @@ edition = "2021"

[dependencies]
serde = { version = "1.0.136", features = ["derive"] }
unm_engine = { version = "0.2.0-pre.1", path = "../../engine-base" }
unm_types = { version = "0.2.0-pre.1", path = "../../types" }
unm_engine = { version = "0.3.0-pre.0", path = "../../engine-base" }
unm_types = { version = "0.3.0-pre.0", path = "../../types" }
async-trait = "0.1.53"
anyhow = "1.0.57"
tokio = { version = "1.17.0", features = ["process"] }
Expand Down
4 changes: 2 additions & 2 deletions napi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ crate-type = ["cdylib"]
[dependencies]
napi = { version = "2.3.1", features = ["full"] }
napi-derive = "2.3.0"
unm_engine = { version = "0.2.0-pre.1", path = "../engine-base" }
unm_types = { version = "0.2.0-pre.1", path = "../types" }
unm_engine = { version = "0.3.0-pre.0", path = "../engine-base" }
unm_types = { version = "0.3.0-pre.0", path = "../types" }
simple_logger = "2.1.0"
mimalloc = "0.1.28"
unm_api_utils = { version = "0.1.0", path = "../api-utils" }
Expand Down
2 changes: 1 addition & 1 deletion request/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "unm_request"
description = "The request-related methods for UnblockNeteaseMusic."
license = "LGPL-3.0-or-later"
version = "0.2.0-pre.2"
version = "0.3.0-pre.0"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
readme = "../README.md"
edition = "2021"
Expand Down
8 changes: 4 additions & 4 deletions rest-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "unm_rest_api"
description = "The RESTful API that can deal with UnblockNeteaseMusic API."
version = "0.1.0"
version = "0.3.0-pre.0"
edition = "2021"
license = "LGPL-3.0-or-later"
repository = "https://github.com/UnblockNeteaseMusic/server-rust"
Expand All @@ -28,7 +28,7 @@ tower-http = { version = "0.2.5", features = ["cors"] }
tracing = "0.1.34"
tracing-subscriber = "0.3.11"
unm_api_utils = { version = "0.1.0", path = "../api-utils" }
unm_engine = { version = "0.2.0-pre.4", path = "../engine-base" }
unm_engine_bilibili = { version = "0.2.0-pre.2", path = "../engines/bilibili" }
unm_types = { version = "0.2.0-pre.5", path = "../types" }
unm_engine = { version = "0.3.0-pre.0", path = "../engine-base" }
unm_engine_bilibili = { version = "0.3.0-pre.0", path = "../engines/bilibili" }
unm_types = { version = "0.3.0-pre.0", path = "../types" }
url = "2.2.2"
Loading

0 comments on commit 9869911

Please sign in to comment.