[package]
name = "deadpool"
version = "0.9.5"
edition = "2018"
resolver = "2"
authors = ["Michael P. Jung <michael.jung@terreon.de>"]
description = "Dead simple async pool"
keywords = ["async", "database", "pool"]
license = "MIT/Apache-2.0"
repository = "https://github.com/bikeshedder/deadpool"
readme = "README.md"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = ["managed", "unmanaged"]
managed = ["async-trait"]
unmanaged = []
rt_tokio_1 = ["deadpool-runtime/tokio_1"]
rt_async-std_1 = ["deadpool-runtime/async-std_1"]
[dependencies]
num_cpus = "1.11.1"
retain_mut ="0.1.6"
async-trait = { version = "0.1.17", optional = true }
serde = { version = "1.0.103", features = ["derive"], optional = true }
deadpool-runtime = { version = "0.1", path = "./runtime" }
tokio = { version = "1.0", features = ["sync"] }
[dev-dependencies]
async-std = { version = "1.0", features = ["attributes"] }
config = { version = "0.13", features = ["json"] }
criterion = { version = "0.3", features = ["html_reports"] }
itertools = "0.10.3"
tokio = { version = "1.5.0", features = ["macros", "rt", "rt-multi-thread", "time"] }
[[bench]]
name = "managed"
harness = false
[[bench]]
name = "unmanaged"
harness = false
[workspace]
members = [
"diesel",
"lapin",
"memcached",
"postgres",
"r2d2",
"redis",
"runtime",
"sqlite",
"sync",
"examples/*"
]