laminate-sql 0.1.0

Database connectors for laminate — PostgreSQL, SQLite, MySQL data sources
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 = "2021"
rust-version = "1.85"
name = "laminate-sql"
version = "0.1.0"
authors = ["Greg Lamberson <greg@lamco.io>"]
build = false
exclude = ["/tests/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Database connectors for laminate — PostgreSQL, SQLite, MySQL data sources"
homepage = "https://lamco.ai"
documentation = "https://docs.rs/laminate-sql"
readme = false
keywords = [
    "laminate",
    "database",
    "sql",
    "data-source",
    "etl",
]
categories = [
    "database",
    "encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lamco-admin/laminate"

[badges.maintenance]
status = "actively-developed"

[features]
all-databases = [
    "postgres",
    "sqlite",
    "mysql",
]
default = []
mysql = ["sqlx/mysql"]
postgres = ["sqlx/postgres"]
sqlite = ["sqlx/sqlite"]

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

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

[dependencies.laminate]
version = "0.1.0"
features = ["schema"]

[dependencies.serde_json]
version = "1"

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio",
    "json",
]
default-features = false

[dependencies.thiserror]
version = "2"

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

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]