jerrycan-db 0.1.0

Database extension for the jerrycan framework: SQLite + Postgres via sqlx, module-owned migrations, Db dependency. https://jerrycan.cc
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"
rust-version = "1.85"
name = "jerrycan-db"
version = "0.1.0"
authors = ["Pavel Hegler"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Database extension for the jerrycan framework: SQLite + Postgres via sqlx, module-owned migrations, Db dependency. https://jerrycan.cc"
homepage = "https://jerrycan.cc"
readme = false
keywords = [
    "sql",
    "sqlx",
    "migrations",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/backant-io/jerrycan"

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

[dependencies.jerrycan-core]
version = "0.1.0"

[dependencies.sea-query]
version = "0.32"
features = [
    "backend-sqlite",
    "backend-postgres",
]
default-features = false

[dependencies.sea-query-binder]
version = "0.7"
features = ["sqlx-any"]
default-features = false

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio",
    "tls-rustls",
    "any",
    "sqlite",
    "postgres",
]
default-features = false

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