mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
Update rxml to 0.10.1
rxml 0.10.0 (and earlier) had a bug which caused it to reject valid XML documents if an UTF-8 sequence straddled the token size boundary (8192 bytes by default) of a text event.
This commit is contained in:
parent
aabd19f78c
commit
2097b9685f
2 changed files with 2 additions and 2 deletions
|
@ -21,4 +21,4 @@ edition = "2021"
|
||||||
gitlab = { repository = "xmpp-rs/xmpp-rs" }
|
gitlab = { repository = "xmpp-rs/xmpp-rs" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rxml = { version = "0.10.0", default-features = false, features = ["sync", "smartstring"] }
|
rxml = { version = "0.10.1", default-features = false, features = ["sync", "smartstring"] }
|
||||||
|
|
|
@ -19,7 +19,7 @@ tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros"] }
|
||||||
tokio-stream = { version = "0.1", features = [] }
|
tokio-stream = { version = "0.1", features = [] }
|
||||||
tokio-util = { version = "0.7", features = ["codec"] }
|
tokio-util = { version = "0.7", features = ["codec"] }
|
||||||
webpki-roots = { version = "0.25", optional = true }
|
webpki-roots = { version = "0.25", optional = true }
|
||||||
rxml = { version = "0.10.0", features = ["smartstring"] }
|
rxml = { version = "0.10.1", features = ["smartstring"] }
|
||||||
rand = "^0.8"
|
rand = "^0.8"
|
||||||
syntect = { version = "5", optional = true }
|
syntect = { version = "5", optional = true }
|
||||||
# same repository dependencies
|
# same repository dependencies
|
||||||
|
|
Loading…
Reference in a new issue