laterite-core 0.1.0

Laterite CMF application kernel: config, errors, database, migrations, modules
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 = "laterite-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Laterite CMF application kernel: config, errors, database, migrations, modules"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/lateritecmf/laterite"

[features]
default = []
mysql = ["sqlx/mysql"]
postgres = ["sqlx/postgres"]
sqlite = ["sqlx/sqlite"]
testing = [
    "dep:tokio",
    "dep:url",
    "dep:uuid",
]

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

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

[dependencies.config]
version = "0.15"
features = ["toml"]
default-features = false

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

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

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

[dependencies.thiserror]
version = "2"

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

[dependencies.url]
version = "2"
optional = true

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]
optional = true

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

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