Config for published crate

pull/14/head
Thijs Cadier 9 years ago
parent 9b9568476c
commit ded48f4257

@ -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 = "*"

@ -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.

@ -1,10 +1,16 @@
[package]
name = "mongoc-sys"
version = "1.3.0"
authors = ["Thijs Cadier <thijs@appsignal.com>"]
build = "build.rs"
links = "mongoc"
name = "mongoc-sys"
version = "1.3.0"
description = "Sys package with installer and bindings for mongoc"
authors = ["Thijs Cadier <thijs@appsignal.com>"]
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"

Loading…
Cancel
Save