# HG changeset patch # User Raphaël Gomès # Date 1668429356 -3600 # Node ID b78ae134ac921fa0dd9943a75a5b2a3534a1b423 # Parent 88a8de821b5e1c1a927dd73727f18372e9c75850 hg-core: relax dependencies pinning Being this rigid makes packagers' job more difficult since they might not carry the exact version. This hard pinning was introduced in eb02decdf but wasn't strictly necessary to achieve its compatibility goal. diff -r 88a8de821b5e -r b78ae134ac92 rust/hg-core/Cargo.toml --- a/rust/hg-core/Cargo.toml Mon Nov 14 19:58:44 2022 +0400 +++ b/rust/hg-core/Cargo.toml Mon Nov 14 13:35:56 2022 +0100 @@ -38,7 +38,7 @@ format-bytes = "0.3.0" # once_cell 1.15 uses edition 2021, while the heptapod CI # uses an old version of Cargo that doesn't support it. -once_cell = "=1.14.0" +once_cell = "1.14.0" # We don't use the `miniz-oxide` backend to not change rhg benchmarks and until # we have a clearer view of which backend is the fastest.