[package]
edition = "2024"
rust-version = "1.90"
name = "keelson-models"
version = "0.1.0"
authors = ["Kensuke Kubo"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "keelson's typed model layer: the View/Table traits, Setter plumbing, hooks and relation loaders the code generator emits against."
readme = "README.md"
keywords = [
"sql",
"orm",
"database",
"models",
"codegen",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/ken109/keelson-rs"
[features]
live-docker = []
[lib]
name = "keelson_models"
path = "src/lib.rs"
[[test]]
name = "spec_mysql"
path = "tests/spec_mysql.rs"
[[test]]
name = "spec_psql"
path = "tests/spec_psql.rs"
[[test]]
name = "spec_sqlite"
path = "tests/spec_sqlite.rs"
[dependencies.keelson-core]
version = "0.1.0"
[dependencies.keelson-exec]
version = "0.1.0"
[dev-dependencies.chrono]
version = "0.4"
features = ["std"]
default-features = false
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
default-features = false
[lints.clippy]
todo = "warn"
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"