Skip to content

Commit ee50c28

Browse files
committed
Update Cargo.toml
This fixes ``` The package `rustc-serialize v0.3.24` currently triggers the following future incompatibility lints: > warning: impl method assumes more implied bounds than the corresponding trait method > --> /home/at/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-serialize-0.3.24/src/serialize.rs:1155:41 > | > 1155 | fn decode<D: Decoder>(d: &mut D) -> Result<Cow<'static, T>, D::Error> { > | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace this type to make the impl signature compatible: `Result<Cow<'a, T>, <D as serialize::Decoder>::Error>` > | > = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! > = note: for more information, see issue #105572 <rust-lang/rust#105572> > = note: `#[allow(implied_bounds_entailment)]` on by default > ```
1 parent d784c63 commit ee50c28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ license = "MIT"
99

1010
[dependencies]
1111
lazy_static = "1"
12-
num = "0.1"
13-
regex = "0.2"
12+
num = "0.4"
13+
regex = "1"

0 commit comments

Comments
 (0)