[dependencies.sha2]
default-features = false
version = "0.10.9"
[dependencies.tokio]
default-features = false
version = "1.45.1"
[dependencies.tokio-postgres]
default-features = false
version = "0.7.13"
[dependencies.tokio-rustls]
default-features = false
version = "0.26.2"
[dev-dependencies.tokio]
default-features = false
features = ["rt"]
version = "1.45.1"
[dev-dependencies.tokio-rustls]
default-features = false
features = ["ring"]
version = "0.26.2"
[features]
default = ["runtime"]
runtime = ["tokio-postgres/runtime"]
[lib]
name = "postgres_rustls"
path = "src/lib.rs"
[lints.clippy]
arbitrary_source_item_ordering = "allow"
blanket_clippy_restriction_lints = "allow"
implicit_return = "allow"
missing_trait_methods = "allow"
return_and_then = "allow"
single_call_fn = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.complexity]
level = "deny"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.clippy.perf]
level = "deny"
priority = -1
[lints.clippy.restriction]
level = "deny"
priority = -1
[lints.clippy.style]
level = "deny"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.rust.ambiguous_negative_literals]
level = "deny"
priority = -1
[lints.rust.closure_returning_async_block]
level = "deny"
priority = -1
[lints.rust.deref_into_dyn_supertrait]
level = "deny"
priority = -1
[lints.rust.ffi_unwind_calls]
level = "deny"
priority = -1
[lints.rust.future_incompatible]
level = "deny"
priority = -1
[lints.rust.impl_trait_redundant_captures]
level = "deny"
priority = -1
[lints.rust.keyword-idents]
level = "deny"
priority = -1
[lints.rust.let_underscore]
level = "deny"
priority = -1
[lints.rust.linker_messages]
level = "deny"
priority = -1
[lints.rust.macro_use_extern_crate]
level = "deny"
priority = -1
[lints.rust.meta_variable_misuse]
level = "deny"
priority = -1
[lints.rust.missing_copy_implementations]
level = "deny"
priority = -1
[lints.rust.missing_debug_implementations]
level = "deny"
priority = -1
[lints.rust.missing_docs]
level = "deny"
priority = -1
[lints.rust.non_ascii_idents]
level = "deny"
priority = -1
[lints.rust.nonstandard_style]
level = "deny"
priority = -1
[lints.rust.redundant_imports]
level = "deny"
priority = -1
[lints.rust.redundant_lifetimes]
level = "deny"
priority = -1
[lints.rust.refining_impl_trait]
level = "deny"
priority = -1
[lints.rust.rust_2018_compatibility]
level = "deny"
priority = -1
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1
[lints.rust.rust_2021_compatibility]
level = "deny"
priority = -1
[lints.rust.rust_2024_compatibility]
level = "deny"
priority = -1
[lints.rust.single_use_lifetimes]
level = "deny"
priority = -1
[lints.rust.trivial_casts]
level = "deny"
priority = -1
[lints.rust.trivial_numeric_casts]
level = "deny"
priority = -1
[lints.rust.unit_bindings]
level = "deny"
priority = -1
[lints.rust.unknown_lints]
level = "deny"
priority = -1
[lints.rust.unnameable_types]
level = "deny"
priority = -1
[lints.rust.unreachable_pub]
level = "deny"
priority = -1
[lints.rust.unsafe_code]
level = "deny"
priority = -1
[lints.rust.unstable_features]
level = "deny"
priority = -1
[lints.rust.unused]
level = "deny"
priority = -1
[lints.rust.unused_crate_dependencies]
level = "deny"
priority = -1
[lints.rust.unused_import_braces]
level = "deny"
priority = -1
[lints.rust.unused_lifetimes]
level = "deny"
priority = -1
[lints.rust.unused_qualifications]
level = "deny"
priority = -1
[lints.rust.unused_results]
level = "deny"
priority = -1
[lints.rust.variant_size_differences]
level = "deny"
priority = -1
[lints.rust.warnings]
level = "deny"
priority = -1
[package]
authors = ["Zack Newman <zack@philomathiclife.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "database"]
description = "TLS support for tokio-postgres via tokio-rustls."
documentation = "https://docs.rs/postgres_rustls/latest/postgres_rustls/"
edition = "2024"
keywords = ["postgres", "rustls", "tls", "tokio"]
license = "MIT OR Apache-2.0"
name = "postgres_rustls"
readme = "README.md"
repository = "https://git.philomathiclife.com/repos/postgres_rustls/"
rust-version = "1.86.0"
version = "0.1.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]