[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"
native-tls = "0.2"
postgres-native-tls = "0.5"
[features]
tracing = ["rust-ef/tracing"]