From e44d423e834a308368afbf26c336f0365d65bf7e Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Mon, 11 Jun 2018 14:06:03 -0600 Subject: [PATCH] Make version syntax consistent Using no symbol implies its a symver caret requirement. https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html --- Cargo.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 071c845af..78d0b0889 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,12 +61,12 @@ ring = "0.12.1" untrusted = "0.5.1" bincode = "1.0.0" chrono = { version = "0.4.0", features = ["serde"] } -log = "^0.4.1" -env_logger = "^0.4.1" -matches = "^0.1.6" -byteorder = "^1.2.1" -libc = "^0.2.1" -getopts = "^0.2" +log = "0.4.1" +env_logger = "0.4.1" +matches = "0.1.6" +byteorder = "1.2.1" +libc = "0.2.1" +getopts = "0.2" isatty = "0.1" rand = "0.5.1" -pnet = "^0.21.0" +pnet = "0.21.0"