rust-ef-postgres 1.6.0

PostgreSQL provider for Rust Entity Framework
Documentation
[package]

name = "rust-ef-postgres"

version.workspace = true

edition.workspace = true

license.workspace = true

repository.workspace = true

description = "PostgreSQL provider for Rust Entity Framework"

keywords = ["orm", "efcore", "entity-framework", "postgres", "database"]

categories = ["database"]



[dependencies]

rust-ef = { version = "1.5.3", path = "../core", features = ["chrono", "uuid", "decimal"] }

async-trait = "0.1"

tokio-postgres = { version = "0.7", features = ["with-chrono-0_4", "with-uuid-1"] }

deadpool-postgres = "0.14"

tokio = { version = "1", features = ["full"] }

chrono = "0.4"

uuid = { version = "1", features = ["v4"] }

rust_decimal = "1"

# TLS support for PostgreSQL connections (v1.4+). Enables `PgTlsMode::Require`

# via the system's native TLS implementation (SChannel on Windows, OpenSSL on

# Linux, Secure Transport on macOS).

native-tls = "0.2"

postgres-native-tls = "0.5"



[features]

tracing = ["rust-ef/tracing"]