mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Update to toml_edit 0.22 (#11973)
# Objective Do #11829, but without breaking CI. ## Solution Update to `toml_edit` v0.22, replace the deprecated function with the the newer equivalent.
This commit is contained in:
parent
24e8e67b91
commit
ac6a4ff386
4 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
|
||||||
keywords = ["bevy"]
|
keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
|
toml_edit = { version = "0.22", default-features = false, features = ["parse"] }
|
||||||
syn = "2.0"
|
syn = "2.0"
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
rustc-hash = "1.0"
|
rustc-hash = "1.0"
|
||||||
|
|
|
@ -7,7 +7,7 @@ publish = false
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
|
toml_edit = { version = "0.22", default-features = false, features = ["parse"] }
|
||||||
tera = "1.15"
|
tera = "1.15"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
bitflags = "2.3"
|
bitflags = "2.3"
|
||||||
|
|
|
@ -65,7 +65,7 @@ fn parse_features(panic_on_missing: bool) -> Vec<Feature> {
|
||||||
.as_str()
|
.as_str()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.to_string();
|
.to_string();
|
||||||
if let Some(description) = key.decor().prefix() {
|
if let Some(description) = key.leaf_decor().prefix() {
|
||||||
let description = description.as_str().unwrap().to_string();
|
let description = description.as_str().unwrap().to_string();
|
||||||
if !description.starts_with("\n# ") || !description.ends_with('\n') {
|
if !description.starts_with("\n# ") || !description.ends_with('\n') {
|
||||||
panic!("Missing description for feature {name}");
|
panic!("Missing description for feature {name}");
|
||||||
|
|
|
@ -10,5 +10,5 @@ license = "MIT OR Apache-2.0"
|
||||||
xshell = "0.2"
|
xshell = "0.2"
|
||||||
clap = { version = "4.0", features = ["derive"] }
|
clap = { version = "4.0", features = ["derive"] }
|
||||||
ron = "0.8"
|
ron = "0.8"
|
||||||
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
|
toml_edit = { version = "0.22", default-features = false, features = ["parse"] }
|
||||||
pbr = "1.1"
|
pbr = "1.1"
|
||||||
|
|
Loading…
Reference in a new issue