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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2018"
name = "postgres"
version = "0.19.9"
authors = ["Steven Fackler <sfackler@gmail.com>"]
description = "A native, synchronous PostgreSQL client"
readme = "README.md"
keywords = [
"database",
"postgres",
"postgresql",
"sql",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sfackler/rust-postgres"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[dependencies.bytes]
version = "1.0"
[dependencies.fallible-iterator]
version = "0.3"
[dependencies.futures-util]
version = "0.3.14"
features = ["sink"]
[dependencies.log]
version = "0.4"
[dependencies.tokio]
version = "1.0"
features = [
"rt",
"time",
]
[dependencies.tokio-postgres]
version = "0.7.12"
[dev-dependencies.criterion]
version = "0.5"
[features]
array-impls = ["tokio-postgres/array-impls"]
with-chrono-0_4 = ["tokio-postgres/with-chrono-0_4"]
with-eui48-1 = ["tokio-postgres/with-eui48-1"]
with-geo-types-0_7 = ["tokio-postgres/with-geo-types-0_7"]
with-jiff-0_1 = ["tokio-postgres/with-jiff-0_1"]
with-serde_json-1 = ["tokio-postgres/with-serde_json-1"]
with-time-0_3 = ["tokio-postgres/with-time-0_3"]
with-uuid-1 = ["tokio-postgres/with-uuid-1"]
[badges.circle-ci]
repository = "sfackler/rust-postgres"
|