[package]
edition = "2021"
rust-version = "1.89"
name = "datafusion-postgres"
version = "0.15.0"
authors = ["Ning Sun <n@sunng.info>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Exporting datafusion query engine with postgres wire protocol"
homepage = "https://github.com/datafusion-contrib/datafusion-postgres/"
documentation = "https://docs.rs/crate/datafusion-postgres/"
readme = "README.md"
keywords = [
"database",
"postgresql",
"datafusion",
]
license = "Apache-2.0"
repository = "https://github.com/datafusion-contrib/datafusion-postgres/"
[lib]
name = "datafusion_postgres"
path = "src/lib.rs"
[[test]]
name = "dbeaver"
path = "tests/dbeaver.rs"
[[test]]
name = "grafana"
path = "tests/grafana.rs"
[[test]]
name = "metabase"
path = "tests/metabase.rs"
[[test]]
name = "pgadmin"
path = "tests/pgadmin.rs"
[[test]]
name = "pgcli"
path = "tests/pgcli.rs"
[[test]]
name = "psql"
path = "tests/psql.rs"
[dependencies.arrow-pg]
version = "0.12.1"
features = ["datafusion"]
default-features = false
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1.11.1"
[dependencies.chrono]
version = "0.4"
features = ["std"]
[dependencies.datafusion]
version = "52"
default-features = false
[dependencies.datafusion-pg-catalog]
version = "0.15.0"
[dependencies.futures]
version = "0.3"
[dependencies.getset]
version = "0.1"
[dependencies.log]
version = "0.4"
[dependencies.pgwire]
version = "0.38"
features = ["server-api-ring"]
default-features = false
[dependencies.postgres-types]
version = "0.2"
[dependencies.rust_decimal]
version = "1.40"
features = ["db-postgres"]
[dependencies.rustls-pemfile]
version = "2.0"
[dependencies.rustls-pki-types]
version = "1.14"
[dependencies.tokio]
version = "1.49"
features = [
"sync",
"net",
]
[dependencies.tokio-rustls]
version = "0.26"
features = ["ring"]
default-features = false
[dev-dependencies.env_logger]
version = "0.11"