lenso-postgres-kit 0.1.0

Module-owned PostgreSQL schema lifecycle kit for Lenso applications
Documentation
[package]
name = "lenso-postgres-kit"
version = "0.1.0"
edition = "2024"
rust-version = "1.94"
license = "MIT"
description = "Module-owned PostgreSQL schema lifecycle kit for Lenso applications"
repository = "https://github.com/LioRael/lenso-postgres-kit"
readme = "README.md"
keywords = ["lenso", "postgresql", "migration", "module"]
categories = ["database"]

[dependencies]
hex = "0.4"
sha2 = "0.11"
sqlx = { version = "0.9", default-features = false, features = ["runtime-tokio", "tls-rustls-ring-webpki", "postgres"] }
thiserror = "2.0"

[dev-dependencies]
tokio = { version = "1.52", features = ["macros", "rt-multi-thread"] }

[lints.rust]
unsafe_code = "forbid"
missing_debug_implementations = "warn"

[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
missing_errors_doc = "allow"
must_use_candidate = "allow"