Skip to content
This repository was archived by the owner on Oct 18, 2021. It is now read-only.

Commit 4be3128

Browse files
committed
Merge branch '1.0' of github.com:mongodb-labs/mongo-rust-driver-prototype into 1.0
2 parents f082225 + bc8da0b commit 4be3128

File tree

3 files changed

+119
-65
lines changed

3 files changed

+119
-65
lines changed

Cargo.lock

Lines changed: 114 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mongodb"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Valeri Karpov <[email protected]>",
55
"Saghm Rossi <[email protected]>",
66
"Kevin Yeh <[email protected]>"]

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Travis](https://travis-ci.org/mongodb-labs/mongo-rust-driver-prototype.svg)](https://travis-ci.org/mongodb-labs/mongo-rust-driver-prototype)[![Crates.io](https://img.shields.io/crates/v/mongodb.svg)](https://crates.io/crates/mongodb)[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
1+
[![Travis](https://travis-ci.org/mongodb-labs/mongo-rust-driver-prototype.svg)](https://travis-ci.org/mongodb-labs/mongo-rust-driver-prototype) [![Crates.io](https://img.shields.io/crates/v/mongodb.svg)](https://crates.io/crates/mongodb) [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
22

33
MongoDB Rust Driver Prototype
44
=============================
@@ -14,16 +14,16 @@ Installation
1414

1515
#### Dependencies
1616

17-
- [Rust 1.x with Cargo](http://rust-lang.org)
17+
- [Rust 1.7+ with Cargo](http://rust-lang.org)
1818

1919
#### Importing
2020

2121
The 1.0 driver is available on crates.io. To use the MongoDB driver in your code, add the bson and mongodb packages to your `Cargo.toml`:
2222

2323
```
2424
[dependencies]
25-
bson = "0.1.4"
26-
mongodb = "0.1.0"
25+
bson = "0.2.0"
26+
mongodb = "0.1.4"
2727
```
2828

2929
Then, import the bson and driver libraries within your code.

0 commit comments

Comments
 (0)