vantage-sql 0.4.3

Vantage extension for SQL databases (Postgres, MySQL, SQLite)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "vantage-sql"
version = "0.4.3"
authors = ["Romans Malinovskis <me@nearly.guru>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vantage extension for SQL databases (Postgres, MySQL, SQLite)"
homepage = "https://romaninsh.github.io/vantage"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/romaninsh/vantage"
resolver = "2"

[features]
default = ["sqlite"]
mysql = ["sqlx/mysql"]
postgres = ["sqlx/postgres"]
sqlite = ["sqlx/sqlite"]

[lib]
name = "vantage_sql"
path = "src/lib.rs"

[[test]]
name = "mysql"
path = "tests/mysql.rs"

[[test]]
name = "postgres"
path = "tests/postgres.rs"

[[test]]
name = "sqlite"
path = "tests/sqlite.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.ciborium]
version = "0.2"

[dependencies.hex]
version = "0.4"

[dependencies.indexmap]
version = "2.12.0"
features = ["serde"]

[dependencies.paste]
version = "1.0"

[dependencies.rust_decimal]
version = "1"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1"
features = ["preserve_order"]

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio",
    "rust_decimal",
    "uuid",
    "chrono",
]

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.uuid]
version = "1"

[dependencies.vantage-core]
version = "0.4"

[dependencies.vantage-dataset]
version = "0.4.2"

[dependencies.vantage-expressions]
version = "0.4"

[dependencies.vantage-table]
version = "0.4.3"

[dependencies.vantage-types]
version = "0.4"
features = ["serde"]

[dev-dependencies.tokio]
version = "1"
features = ["full"]