modelite 0.3.0

Automatically generate create table and other SQLite queries for a struct
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 = "modelite"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automatically generate create table and other SQLite queries for a struct"
readme = "README.md"
license = "MIT"
repository = "https://codeberg.org/Jomy10/modelite"

[features]
default = [
    "sqlx",
    "macro",
]
macro = ["dep:modelite-macros"]
sqlx = [
    "dep:sqlx",
    "dep:libsqlite3-sys",
    "dep:futures-core",
    "modelite-macros/sqlx",
]

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

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

[dependencies.futures-core]
version = "0.3.32"
optional = true

[dependencies.libsqlite3-sys]
version = "0.30.1"
optional = true

[dependencies.modelite-macros]
version = "0.2.0"
optional = true
default-features = false

[dependencies.sqlx]
version = "0.8.6"
features = ["sqlite"]
optional = true

[dev-dependencies.sqlx]
version = "0.8.6"
features = [
    "sqlite",
    "runtime-tokio",
]

[dev-dependencies.tokio]
version = "1.52.1"
features = ["rt"]