diff --git a/Cargo.toml b/Cargo.toml index 52f919f..c47bfc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,12 +12,13 @@ license = "MIT" name = "tests" [dependencies] -libc = "*" -log = "*" -bson = "*" +libc = "> 0.2.0" +log = "> 0.3.0" +bson = "> 0.1.0" [dependencies.mongoc-sys] -path = "mongoc-sys" +path = "mongoc-sys" +version = "1.3.0" [dev-dependencies] chrono = "*" diff --git a/README.md b/README.md index b320fd2..fd419d6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Mongo Rust Driver [![Build Status](https://travis-ci.org/thijsc/mongo-rust-driver.svg)](https://travis-ci.org/thijsc/mongo-rust-driver) +[![Crate](http://meritbadge.herokuapp.com/mongo_driver)](https://crates.io/crates/mongo_driver) Mongo Rust driver built on top of the [Mongo C driver](https://github.com/mongodb/mongo-c-driver). This driver is a thin wrapper around the production-ready C driver that provides a safe and ergonomic Rust interface which handles all the gnarly usage details of the C driver for you. diff --git a/mongoc-sys/Cargo.toml b/mongoc-sys/Cargo.toml index dce34d4..189b317 100644 --- a/mongoc-sys/Cargo.toml +++ b/mongoc-sys/Cargo.toml @@ -1,10 +1,16 @@ [package] -name = "mongoc-sys" -version = "1.3.0" -authors = ["Thijs Cadier "] -build = "build.rs" -links = "mongoc" +name = "mongoc-sys" +version = "1.3.0" +description = "Sys package with installer and bindings for mongoc" +authors = ["Thijs Cadier "] +build = "build.rs" +repository = "https://github.com/thijsc/mongo-rust-driver" +links = "mongoc" +license = "MIT" +exclude = [ + "mongo-c-driver-*" +] [dependencies] -libc = "*" -openssl-sys = "*" +libc = "> 0.2.0" +openssl-sys = "> 0.7.0"