rust-postgres/postgres/Cargo.toml

50 lines
1.5 KiB
TOML
Raw Normal View History

2018-12-21 21:34:09 +00:00
[package]
name = "postgres"
2023-03-27 23:27:16 +00:00
version = "0.19.5"
2018-12-21 21:34:09 +00:00
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
2019-04-07 03:59:01 +00:00
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
2019-04-07 03:59:01 +00:00
[package.metadata.docs.rs]
all-features = true
[badges]
circle-ci = { repository = "sfackler/rust-postgres" }
2018-12-21 21:34:09 +00:00
[features]
array-impls = ["tokio-postgres/array-impls"]
2019-10-15 01:24:04 +00:00
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"]
2021-06-03 00:54:37 +00:00
with-eui48-1 = ["tokio-postgres/with-eui48-1"]
2021-01-25 20:49:06 +00:00
with-geo-types-0_6 = ["tokio-postgres/with-geo-types-0_6"]
with-geo-types-0_7 = ["tokio-postgres/with-geo-types-0_7"]
2019-10-15 01:24:04 +00:00
with-serde_json-1 = ["tokio-postgres/with-serde_json-1"]
2022-08-20 19:18:19 +00:00
with-smol_str-01 = ["tokio-postgres/with-smol_str-01"]
2019-10-19 17:37:28 +00:00
with-uuid-0_8 = ["tokio-postgres/with-uuid-0_8"]
2022-04-20 14:52:47 +00:00
with-uuid-1 = ["tokio-postgres/with-uuid-1"]
2020-02-28 22:58:43 +00:00
with-time-0_2 = ["tokio-postgres/with-time-0_2"]
2021-09-23 16:28:02 +00:00
with-time-0_3 = ["tokio-postgres/with-time-0_3"]
2019-01-31 05:19:39 +00:00
2018-12-21 21:34:09 +00:00
[dependencies]
2020-12-24 02:03:15 +00:00
bytes = "1.0"
2019-03-10 23:32:28 +00:00
fallible-iterator = "0.2"
futures-util = { version = "0.3.14", features = ["sink"] }
2023-03-27 23:27:16 +00:00
tokio-postgres = { version = "0.7.8", path = "../tokio-postgres" }
2018-12-21 21:34:09 +00:00
2020-12-24 02:03:15 +00:00
tokio = { version = "1.0", features = ["rt", "time"] }
log = "0.4"
2019-08-04 01:09:27 +00:00
[dev-dependencies]
criterion = "0.5"
tokio = { version = "1.0", features = ["rt-multi-thread"] }