# HG changeset patch # User Mads Kiilerich # Date 2022-05-24 12:29:44 # Node ID 13c37f1c7c4b6a59453d184f15d48b1fe98035e7 # Parent 868bee335517ade10f81d92cb3cdbf4a4bd9da5c rust: relax im-rc dependency to allow minor updates This "15.0.*" requirement came from 0d99778af68a and is now replaced with plain "15.0". AFAICS, it really should allow (but not necessarily require) im-rc 15.1 . Narrow requirement requirements with wildcard in the version is not used in other places. 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 @@ -14,7 +14,7 @@ bytes-cast = "0.2" byteorder = "1.3.4" derive_more = "0.99" home = "0.5" -im-rc = "15.0.*" +im-rc = "15.0" itertools = "0.9" lazy_static = "1.4.0" libc = "0.2"