forked from overdrivenpotato/bb8-diesel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
23 lines (20 loc) · 887 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
[package]
name = "bb8-diesel"
description = "bb8 connection manager for Diesel"
version = "0.2.1"
authors = ["Marko Mijalkovic <[email protected]>", "Sean Klein <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/overdrivenpotato/bb8-diesel"
keywords = ["diesel", "r2d2", "pool", "tokio", "async"]
[[example]]
name = "usage"
path = "examples/usage.rs"
[dependencies]
bb8 = "0.8"
async-trait = "0.1.24"
diesel = { version = "=2.0", default-features = false, features = [ "r2d2", "i-implement-a-third-party-backend-and-opt-into-breaking-changes" ] }
tokio = { version = "1", default-features = false, features = [ "rt-multi-thread" ] }
[dev-dependencies]
diesel = { version = "=2.0", features = [ "postgres", "r2d2", "i-implement-a-third-party-backend-and-opt-into-breaking-changes" ] }
tokio = { version = "1", features = [ "macros"] }