mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
auto replace version in azalea/src/lib.rs
This commit is contained in:
parent
89c29b7a19
commit
d11d413a89
2 changed files with 12 additions and 9 deletions
|
@ -6,23 +6,26 @@ name = "azalea"
|
||||||
repository = "https://github.com/mat-1/azalea/tree/main/azalea"
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea"
|
||||||
version = "0.4.0"
|
version = "0.4.0"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
[package.metadata.release]
|
||||||
|
pre-release-replacements = [
|
||||||
|
{ file = "src/lib.rs", search = "//! `azalea = \"[a-z0-9\\.-]+\"`", replace = "//! `azalea = \"{{version}}\"`" },
|
||||||
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "^1.0.65"
|
anyhow = "^1.0.65"
|
||||||
async-trait = "0.1.58"
|
async-trait = "0.1.58"
|
||||||
azalea-block = {version = "0.4.0", path = "../azalea-block"}
|
azalea-block = { version = "0.4.0", path = "../azalea-block" }
|
||||||
azalea-chat = { version = "0.4.0", path = "../azalea-chat" }
|
azalea-chat = { version = "0.4.0", path = "../azalea-chat" }
|
||||||
azalea-client = {version = "0.4.0", path = "../azalea-client"}
|
azalea-client = { version = "0.4.0", path = "../azalea-client" }
|
||||||
azalea-core = {version = "0.4.0", path = "../azalea-core"}
|
azalea-core = { version = "0.4.0", path = "../azalea-core" }
|
||||||
azalea-physics = {version = "0.4.0", path = "../azalea-physics"}
|
azalea-physics = { version = "0.4.0", path = "../azalea-physics" }
|
||||||
azalea-protocol = {version = "0.4.0", path = "../azalea-protocol"}
|
azalea-protocol = { version = "0.4.0", path = "../azalea-protocol" }
|
||||||
azalea-world = {version = "0.4.0", path = "../azalea-world"}
|
azalea-world = { version = "0.4.0", path = "../azalea-world" }
|
||||||
futures = "0.3.25"
|
futures = "0.3.25"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
nohash-hasher = "0.2.0"
|
nohash-hasher = "0.2.0"
|
||||||
num-traits = "0.2.15"
|
num-traits = "0.2.15"
|
||||||
parking_lot = {version = "^0.12.1", features = ["deadlock_detection"]}
|
parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
|
||||||
priority-queue = "1.3.0"
|
priority-queue = "1.3.0"
|
||||||
thiserror = "^1.0.37"
|
thiserror = "^1.0.37"
|
||||||
tokio = "^1.21.2"
|
tokio = "^1.21.2"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
//! Latest bleeding-edge version:
|
//! Latest bleeding-edge version:
|
||||||
//! `azalea = { git="https://github.com/mat-1/Cargo.toml" }`\
|
//! `azalea = { git="https://github.com/mat-1/Cargo.toml" }`\
|
||||||
//! Latest "stable" release:
|
//! Latest "stable" release:
|
||||||
//! `azalea = "0.6"`
|
//! `azalea = "0.4"`
|
||||||
//!
|
//!
|
||||||
//! ## Optimization
|
//! ## Optimization
|
||||||
//!
|
//!
|
||||||
|
|
Loading…
Add table
Reference in a new issue