-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (35 loc) · 1.01 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
[package]
authors = ["Jason Ozias <jason.g.ozias@gmail.com>"]
categories = ["asynchronous", "database"]
description = "bb8 connection pooling impmentation for the MongoDB database"
documentation = "http://docs.rs/bb8-mongodb"
edition = "2021"
homepage = "http://github.com/rustyhorde/bb8-mongodb"
keywords = ["bb8", "async", "mongodb", "pool"]
license = "MIT OR Apache-2.0"
name = "bb8-mongodb"
readme = "README.md"
repository = "https://github.com/rustyhorde/bb8-mongodb"
version = "1.0.0"
rust-version = "1.72.1"
[package.metadata.cargo-all-features]
skip_optional_dependencies = true
[package.metadata.cargo-matrix]
[[package.metadata.cargo-matrix.channel]]
name = "default"
[features]
unstable = []
[dependencies]
anyhow = "1.0.79"
async-trait = "0.1.77"
bb8 = "0.8.3"
mongodb = "3.0.1"
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = ["full"] }
[build-dependencies]
rustversion = "1.0.14"
[dev-dependencies]
futures = "0.3.30"
[package.metadata.docs.rs]
features = []
rustdoc-args = ["--cfg", "docsrs"]