~whynothugo/vdirsyncer-rs

388c85c8172b3d0b81a10a451708e1c4c8805fea — Hugo Osvaldo Barrera 5 months ago 8daeabe
Switch to roxmltree-stable

The stable release contains the fix that I need:

  https://github.com/RazrFalcon/roxmltree/commit/0a65ada11428ec091dd16b30c27b16be0204893b

But excludes a regression that I need to avoid:

  https://github.com/RazrFalcon/roxmltree/commit/4f3566bcb919f63af6ad57e69bcbf7e03236968b

See: https://github.com/RazrFalcon/roxmltree/issues/108
2 files changed, 3 insertions(+), 2 deletions(-)

M Cargo.lock
M libdav/Cargo.toml
M Cargo.lock => Cargo.lock +2 -1
@@ 865,7 865,8 @@ dependencies = [
[[package]]
name = "roxmltree"
version = "0.18.1"
source = "git+https://github.com/RazrFalcon/roxmltree.git?rev=7b1e74813fdd57149b7d134ed1f4d232f11eb02a#7b1e74813fdd57149b7d134ed1f4d232f11eb02a"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "862340e351ce1b271a378ec53f304a5558f7db87f3769dc655a8f6ecbb68b302"
dependencies = [
 "xmlparser",
]

M libdav/Cargo.toml => libdav/Cargo.toml +1 -1
@@ 22,7 22,7 @@ http = "0.2.9"
hyper = { version = "0.14.24", features = ["http1", "client"] }
log = "0.4.17"
percent-encoding = "2.3.0"
roxmltree = { version = "0.18.1", git = "https://github.com/RazrFalcon/roxmltree.git", rev= "7b1e74813fdd57149b7d134ed1f4d232f11eb02a" }
roxmltree = { version = "0.18.1" }
thiserror = "1.0.38"

[dev-dependencies]