sova-db 0.1.4

SeaORM database plugin for Sova (postgres / sqlite / mysql)
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"
name = "sova-db"
version = "0.1.4"
authors = ["Pavel Kuzmin <Virus191288@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SeaORM database plugin for Sova (postgres / sqlite / mysql)"
homepage = "https://s00d.github.io/sova/"
documentation = "https://docs.rs/sova-db"
readme = "README.md"
keywords = [
    "http",
    "web",
    "framework",
    "async",
]
categories = [
    "web-programming::http-server",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/s00d/sova"

[features]
default = ["postgres"]
mysql = [
    "sea-orm/sqlx-mysql",
    "sea-orm-migration/sqlx-mysql",
]
postgres = [
    "sea-orm/sqlx-postgres",
    "sea-orm-migration/sqlx-postgres",
]
sqlite = [
    "sea-orm/sqlx-sqlite",
    "sea-orm-migration/sqlx-sqlite",
]

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

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

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

[dependencies.sea-orm]
version = "2.0"
features = [
    "runtime-tokio-rustls",
    "macros",
]
default-features = false

[dependencies.sea-orm-migration]
version = "2.0"
features = ["runtime-tokio-rustls"]
default-features = false

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

[dependencies.sova-core]
version = "0.1.13"

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

[dependencies.tracing]
version = "0.1"

[dev-dependencies.http]
version = "1"

[dev-dependencies.sova-core]
version = "0.1.13"
features = ["testing"]

[dev-dependencies.tempfile]
version = "3"

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