-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 979 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 979 Bytes
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
[package]
name = "bb8-postgres"
version = "0.9.0"
edition = "2021"
rust-version = "1.75"
description = "Full-featured async (tokio-based) postgres connection pool (like r2d2)"
license = "MIT"
repository = "https://github.com/djc/bb8"
[features]
"with-bit-vec-0_6" = ["tokio-postgres/with-bit-vec-0_6"]
"with-chrono-0_4" = ["tokio-postgres/with-chrono-0_4"]
"with-eui48-0_4" = ["tokio-postgres/with-eui48-0_4"]
"with-geo-types-0_6" = ["tokio-postgres/with-geo-types-0_6"]
"with-serde_json-1" = ["tokio-postgres/with-serde_json-1"]
"with-uuid-0_8" = ["tokio-postgres/with-uuid-0_8"]
"with-uuid-1" = ["tokio-postgres/with-uuid-1"]
"with-time-0_2" = ["tokio-postgres/with-time-0_2"]
"with-time-0_3" = ["tokio-postgres/with-time-0_3"]
[dependencies]
bb8 = { version = "0.9", path = "../bb8" }
tokio = { version = "1.50.0", features = ["rt"] }
tokio-postgres = "0.7"
[dev-dependencies]
futures-util = "0.3.2"
tokio = { version = "1.50.0", features = ["macros", "rt-multi-thread"] }