forked from mongodb/mongo-rust-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
139 lines (118 loc) · 3.38 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[package]
authors = ["Saghm Rossi <[email protected]>", "Patrick Freed <[email protected]>", "Isabel Atkinson <[email protected]>"]
description = "The official MongoDB driver for Rust"
edition = "2018"
keywords = ["mongo", "mongodb", "database", "bson", "nosql"]
categories = ["asynchronous", "database", "web-programming"]
repository = "https://github.com/mongodb/mongo-rust-driver"
license = "Apache-2.0"
readme = "README.md"
name = "mongodb"
version = "2.0.0"
exclude = [
"etc/**",
"rustfmt.toml",
".evergreen/**",
".gitignore",
"src/test/**",
"tests/**"
]
[features]
default = ["tokio-runtime"]
tokio-runtime = ["tokio/macros", "tokio/net", "tokio/rt", "tokio/time", "serde_bytes"]
async-std-runtime = ["async-std", "async-std/attributes", "async-std-resolver", "tokio-util/compat"]
sync = ["async-std-runtime"]
# Enable support for v0.4 of the chrono crate in the public API of the BSON library.
bson-chrono-0_4 = ["bson/chrono-0_4"]
# Enable support for the serde_with crate in the BSON library.
bson-serde_with = ["bson/serde_with"]
# Enable support for v0.8 of the uuid crate in the public API of the BSON library.
bson-uuid-0_8 = ["bson/uuid-0_8"]
# Enable support for MONGODB-AWS authentication.
# This can only be used with the tokio-runtime feature flag.
aws-auth = ["reqwest"]
zstd-compression = ["zstd"]
zlib-compression = ["flate2"]
snappy-compression = ["snap"]
[dependencies]
async-trait = "0.1.42"
base64 = "0.13.0"
bitflags = "1.1.0"
bson = { git = "https://github.com/mongodb/bson-rust", branch = "master" }
chrono = "0.4.7"
derivative = "2.1.1"
flate2 = { version = "1.0", optional = true }
futures-core = "0.3.14"
futures-io = "0.3.14"
futures-util = { version = "0.3.14", features = ["io"] }
futures-executor = "0.3.14"
hex = "0.4.0"
hmac = "0.11"
lazy_static = "1.4.0"
md-5 = "0.9.1"
os_info = { version = "3.0.1", default-features = false }
percent-encoding = "2.0.0"
rand = { version = "0.8.3", features = ["small_rng"] }
rustls-pemfile = "0.2.1"
serde_with = "1.3.1"
sha-1 = "0.9.4"
sha2 = "0.9.3"
snap = { version = "1.0.5", optional = true}
socket2 = "0.4.0"
stringprep = "0.1.2"
strsim = "0.10.0"
take_mut = "0.2.2"
thiserror = "1.0.24"
trust-dns-proto = "0.20.0"
trust-dns-resolver = "0.20.0"
typed-builder = "0.9.0"
version_check = "0.9.1"
webpki = "0.21.0"
webpki-roots = "0.21.0"
zstd = { version = "0.9.0", optional = true }
[dependencies.async-std]
version = "1.9.0"
optional = true
[dependencies.async-std-resolver]
version = "0.20.1"
optional = true
[dependencies.pbkdf2]
version = "0.8"
default-features = false
[dependencies.reqwest]
version = "0.11.2"
optional = true
default-features = false
features = ["json", "rustls-tls"]
[dependencies.rustls]
version = "0.19.0"
features = ["dangerous_configuration"]
[dependencies.serde]
version = "1.0.125"
features = ["derive"]
[dependencies.serde_bytes]
version = "0.11.5"
optional = true
[dependencies.tokio]
version = "1.4.0"
features = ["io-util", "sync", "macros"]
[dependencies.tokio-rustls]
version = "0.22.0"
features = ["dangerous_configuration"]
[dependencies.tokio-util]
version = "0.6.5"
features = ["io"]
[dependencies.uuid]
version = "0.8.2"
features = ["v4"]
[dev-dependencies]
approx = "0.4.0"
derive_more = "0.99.13"
function_name = "0.2.0"
futures = "0.3"
home = "0.5"
pretty_assertions = "0.7.1"
serde_json = "1.0.64"
semver = "1.0.0"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]