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

Commit 8b76f36

Browse files
committed
bump bson to 0.4.4, mongodb to 0.2.3
1 parent f55721b commit 8b76f36

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ license = "Apache-2.0"
77
name = "mongodb"
88
readme = "README.md"
99
repository = "https://github.com/mongodb-labs/mongo-rust-driver-prototype"
10-
version = "0.2.2"
10+
version = "0.2.3"
1111

1212
[dependencies]
1313
bitflags = "0.7.0"
14-
bson = "0.4.3"
14+
bson = "0.4.4"
1515
bufstream = "0.1.1"
1616
byteorder = "0.5.3"
1717
chrono = "0.2.25"

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ The driver is available on crates.io. To use the MongoDB driver in your code, ad
2222

2323
```
2424
[dependencies]
25-
bson = "0.4.1"
26-
mongodb = "0.2.2"
25+
bson = "0.4.4"
26+
mongodb = "0.2.3"
2727
```
2828

2929
Alternately, you can use the MongoDB driver with SSL support. To do this, you must have OpenSSL installed on your system. Then, enable the `ssl` feature for MongoDB in your Cargo.toml:
3030

3131
```
3232
[dependencies]
3333
...
34-
mongodb = { version = "0.2.2", features = ["ssl"] }
34+
mongodb = { version = "0.2.3", features = ["ssl"] }
3535
```
3636

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

0 commit comments

Comments
 (0)