[package]
edition = "2024"
name = "vespertide"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust workspace for defining database schemas in JSON and generating migration plans and SQL from model diffs"
homepage = "https://github.com/dev-five-git/vespertide"
documentation = "https://docs.rs/vespertide"
readme = "README.md"
keywords = [
"database",
"migration",
"schema",
"orm",
"sql",
]
categories = ["database"]
license = "Apache-2.0"
repository = "https://github.com/dev-five-git/vespertide"
resolver = "2"
[lib]
name = "vespertide"
path = "src/lib.rs"
[dependencies.sea-orm]
version = "2.0.0-rc.40"
default-features = false
[dependencies.vespertide-core]
version = "=0.2.0"
default-features = false
[dependencies.vespertide-macro]
version = "=0.2.0"
[dev-dependencies.sea-orm]
version = "2.0.0-rc.40"
features = ["proxy"]
default-features = false
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[lints.clippy]
allow_attributes = "warn"
allow_attributes_without_reason = "warn"
dbg_macro = "warn"
panic_in_result_fn = "warn"
print_stderr = "warn"
todo = "warn"
unimplemented = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.default_trait_access]
level = "allow"
priority = 1
[lints.clippy.doc_lazy_continuation]
level = "allow"
priority = 1
[lints.clippy.doc_markdown]
level = "allow"
priority = 1
[lints.clippy.float_cmp]
level = "allow"
priority = 1
[lints.clippy.inconsistent_struct_constructor]
level = "allow"
priority = 1
[lints.clippy.missing_errors_doc]
level = "allow"
priority = 1
[lints.clippy.missing_panics_doc]
level = "allow"
priority = 1
[lints.clippy.module_name_repetitions]
level = "allow"
priority = 1
[lints.clippy.must_use_candidate]
level = "allow"
priority = 1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.return_self_not_must_use]
level = "allow"
priority = 1
[lints.clippy.similar_names]
level = "allow"
priority = 1
[lints.clippy.too_many_lines]
level = "allow"
priority = 1
[lints.clippy.unnecessary_to_owned]
level = "allow"
priority = 1
[lints.clippy.used_underscore_binding]
level = "allow"
priority = 1
[lints.clippy.useless_vec]
level = "allow"
priority = 1
[lints.rust]
unsafe_code = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]