From patchwork Wed Oct 16 14:21:54 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D7115: rust-dependencies: pin the dependencies of hg-core to prevent breakage From: phabricator X-Patchwork-Id: 42388 Message-Id: <34cf7be566966d4b4888c631ff286429@localhost.localdomain> To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Wed, 16 Oct 2019 14:21:54 +0000 Closed by commit rHG8607818012e7: rust-dependencies: pin the dependencies of hg-core to prevent breakage (authored by Alphare). This revision was automatically updated to reflect the committed changes. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D7115?vs=17197&id=17204 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D7115/new/ REVISION DETAIL https://phab.mercurial-scm.org/D7115 AFFECTED FILES rust/hg-core/Cargo.toml CHANGE DETAILS To: Alphare, #hg-reviewers, pulkit Cc: mercurial-devel diff --git a/rust/hg-core/Cargo.toml b/rust/hg-core/Cargo.toml --- a/rust/hg-core/Cargo.toml +++ b/rust/hg-core/Cargo.toml @@ -12,6 +12,6 @@ byteorder = "1.3.1" lazy_static = "1.3.0" memchr = "2.2.0" -rand = "> 0.6.4" -rand_pcg = "> 0.1.0" -regex = "^1.1" +rand = "0.6.5" +rand_pcg = "0.1.1" +regex = "1.1.0"