[package]
edition = "2021"
rust-version = "1.80"
name = "taxa-sql"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "taxa SqlSource: ingest a Postgres query into an in-memory Polars DataFrame (a taxa_core::Source)."
homepage = "https://github.com/paradigmxyz/taxa"
readme = "README.md"
keywords = [
"polars",
"visualization",
"dataset",
"treemap",
"dataframe",
]
categories = [
"visualization",
"data-structures",
]
license = "MIT"
repository = "https://github.com/paradigmxyz/taxa"
[lib]
name = "taxa_sql"
path = "src/lib.rs"
[[test]]
name = "live"
path = "tests/live.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.polars]
version = "=0.51.0"
features = [
"lazy",
"dtype-i16",
"fmt",
]
default-features = false
[dependencies.postgres]
version = "0.19"
features = ["with-chrono-0_4"]
[dependencies.rust_decimal]
version = "1"
features = ["db-postgres"]
[dependencies.taxa-core]
version = "0.1.0"