You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 18, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,16 +22,16 @@ The driver is available on crates.io. To use the MongoDB driver in your code, ad
22
22
23
23
```
24
24
[dependencies]
25
-
bson = "0.7.1"
26
-
mongodb = "0.2.9"
25
+
bson = "0.8.0"
26
+
mongodb = "0.3.0"
27
27
```
28
28
29
29
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:
30
30
31
31
```
32
32
[dependencies]
33
33
...
34
-
mongodb = { version = "0.2.9", features = ["ssl"] }
34
+
mongodb = { version = "0.3.0", features = ["ssl"] }
35
35
```
36
36
37
37
Then, import the bson and driver libraries within your code.
0 commit comments