From 3697a2c38197b33766386312762a457194e24f33 Mon Sep 17 00:00:00 2001 From: Stu Small Date: Tue, 30 May 2017 14:53:02 -0600 Subject: [PATCH] Use symver version requirements for dependencies --- Cargo.toml | 6 +++--- mongoc-sys/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1dfe4a2..1e83bf4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,9 +13,9 @@ license = "MIT/Apache-2.0" name = "tests" [dependencies] -libc = "> 0.2.0" -log = "> 0.3.0" -bson = "> 0.1.0" +libc = "0.2" +log = "0.3" +bson = "0.8" [dependencies.mongoc-sys] path = "mongoc-sys" diff --git a/mongoc-sys/Cargo.toml b/mongoc-sys/Cargo.toml index 9179ca7..48deb83 100644 --- a/mongoc-sys/Cargo.toml +++ b/mongoc-sys/Cargo.toml @@ -12,5 +12,5 @@ exclude = [ ] [dependencies] -libc = "> 0.2.0" -openssl-sys = "> 0.7.0" +libc = "0.2" +openssl-sys = "0.9"