-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
30 lines (26 loc) · 980 Bytes
/
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
[package]
name = "mongodb-gridfs"
license = "MIT"
version = "0.2.7"
authors = ["Moïse Valvassori <[email protected]>"]
edition = "2018"
description = "An implementation of Mongo GridFS"
homepage = "https://github.com/djedi23/mongodb-gridfs-rs"
repository = "https://github.com/djedi23/mongodb-gridfs-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mongodb = { version = "2", default-features=false }
bson = {version= "2"}
md-5 = "0.10"
typed-builder = "0.18"
futures = { version="0.3", optional=true}
tokio = { version="1", optional=true}
tokio-stream = { version="0.1", optional=true}
[dev-dependencies]
tempfile = "3.3"
tokio = { version="1", features=["fs", "test-util"]}
uuid = "1"
[features]
default = ["mongodb/default", "dep:tokio","dep:tokio-stream"]
async-std-runtime = ["mongodb/async-std-runtime", "dep:futures"]
tokio-runtime = ["mongodb/tokio-runtime", "dep:tokio","dep:tokio-stream"]