diff options
Diffstat (limited to 'azalea-chat')
| -rw-r--r-- | azalea-chat/Cargo.toml | 6 | ||||
| -rwxr-xr-x | azalea-chat/src/component.rs | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/azalea-chat/Cargo.toml b/azalea-chat/Cargo.toml index 8a9cf2ef..cc67628e 100644 --- a/azalea-chat/Cargo.toml +++ b/azalea-chat/Cargo.toml @@ -16,7 +16,7 @@ azalea-buf = { path = "../azalea-buf", features = [ "serde_json", ], version = "^0.7.0", optional = true } azalea-language = { path = "../azalea-language", version = "^0.7.0" } -log = "0.4.17" -once_cell = "1.16.0" +log = "0.4.19" +once_cell = "1.18.0" serde = { version = "^1.0", features = ["derive"] } -serde_json = "^1.0.93" +serde_json = "^1.0.100" diff --git a/azalea-chat/src/component.rs b/azalea-chat/src/component.rs index 59e11bbf..e087713c 100755 --- a/azalea-chat/src/component.rs +++ b/azalea-chat/src/component.rs @@ -128,7 +128,7 @@ impl IntoIterator for FormattedText { let mut v: Vec<FormattedText> = Vec::with_capacity(siblings.len() + 1); v.push(self); for sibling in siblings { - v.extend(sibling.into_iter()); + v.extend(sibling); } v.into_iter() |
