forked from mongodb-labs/mongo-rust-driver-prototype
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (41 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
authors = ["Kevin Yeh <kevinyeah@utexas.edu>", "Saghm Rossi <saghmrossi@gmail.com>", "Valeri Karpov <valkar207@gmail.com>"]
description = "A native MongoDB driver developed under MongoDB labs."
documentation = "https://docs.rs/mongodb"
keywords = ["mongo", "mongodb", "database", "bson", "nosql"]
license = "Apache-2.0"
name = "mongodb"
readme = "README.md"
repository = "https://github.com/mongodb-labs/mongo-rust-driver-prototype"
version = "0.3.2"
[dependencies]
bitflags = "0.9.1"
bson = "0.9.0"
bufstream = "0.1.3"
byteorder = "1.0.0"
chrono = "0.4.0"
data-encoding = "1.2.0"
rand = "0.3.15"
rust-crypto = "0.2.36"
scan_fmt = "0.1.1"
semver = "0.7.0"
separator = "0.3.1"
time = "0.1.37"
[dependencies.clippy]
optional = true
version = "~0"
[dependencies.openssl]
optional = true
version = "0.9.13"
[dependencies.textnonce]
default-features = false
version = "0.6.0"
[dev-dependencies]
approx = "0.1.1"
[dev-dependencies.serde_json]
features = ["preserve_order"]
version = "1.0.2"
[features]
default = []
ssl = ["openssl"]
lint = ["clippy"]