[package]
edition = "2021"
name = "rust-ef-postgres"
version = "1.5.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL provider for Rust Entity Framework"
readme = "README.md"
keywords = [
"orm",
"efcore",
"entity-framework",
"postgres",
"database",
]
categories = ["database"]
license = "MIT"
repository = "https://gitcode.com/rf2026/rust-ef"
[features]
tracing = ["rust-ef/tracing"]
[lib]
name = "rust_ef_postgres"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
[dependencies.deadpool-postgres]
version = "0.14"
[dependencies.native-tls]
version = "0.2"
[dependencies.postgres-native-tls]
version = "0.5"
[dependencies.rust-ef]
version = "1.5.3"
features = [
"chrono",
"uuid",
"decimal",
]
[dependencies.rust_decimal]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-postgres]
version = "0.7"
features = [
"with-chrono-0_4",
"with-uuid-1",
]
[dependencies.uuid]
version = "1"
features = ["v4"]