40954901a4
Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/bheisler/criterion.rs/compare/0.4.0...0.5.0) --- updated-dependencies: - dependency-name: criterion dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
50 lines
1.5 KiB
TOML
50 lines
1.5 KiB
TOML
[package]
|
|
name = "postgres"
|
|
version = "0.19.5"
|
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT/Apache-2.0"
|
|
description = "A native, synchronous PostgreSQL client"
|
|
repository = "https://github.com/sfackler/rust-postgres"
|
|
readme = "../README.md"
|
|
keywords = ["database", "postgres", "postgresql", "sql"]
|
|
categories = ["database"]
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[badges]
|
|
circle-ci = { repository = "sfackler/rust-postgres" }
|
|
|
|
[features]
|
|
array-impls = ["tokio-postgres/array-impls"]
|
|
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-eui48-1 = ["tokio-postgres/with-eui48-1"]
|
|
with-geo-types-0_6 = ["tokio-postgres/with-geo-types-0_6"]
|
|
with-geo-types-0_7 = ["tokio-postgres/with-geo-types-0_7"]
|
|
with-serde_json-1 = ["tokio-postgres/with-serde_json-1"]
|
|
with-smol_str-01 = ["tokio-postgres/with-smol_str-01"]
|
|
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]
|
|
bytes = "1.0"
|
|
fallible-iterator = "0.2"
|
|
futures-util = { version = "0.3.14", features = ["sink"] }
|
|
tokio-postgres = { version = "0.7.8", path = "../tokio-postgres" }
|
|
|
|
tokio = { version = "1.0", features = ["rt", "time"] }
|
|
log = "0.4"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
tokio = { version = "1.0", features = ["rt-multi-thread"] }
|