[package]
edition = "2024"
name = "qw"
version = "0.7.0"
authors = ["Vladas Zakrevksis <146100@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "QW"
homepage = "https://github.com/VladasZ/qw"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/VladasZ/qw"
[lib]
name = "qw"
path = "src/lib.rs"
[[bin]]
name = "qw"
path = "src/main.rs"
[[test]]
name = "migrations"
path = "tests/migrations.rs"
[[test]]
name = "model_add"
path = "tests/model_add.rs"
[[test]]
name = "pg_integration"
path = "tests/pg_integration.rs"
[dependencies.Inflector]
version = "0.11"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
[dependencies.comfy-table]
version = "7.2"
[dependencies.dialoguer]
version = "0.12"
[dependencies.sercli]
version = "0.4.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio-rustls",
"postgres",
]
[dependencies.structopt]
version = "0.3"
[dependencies.tempfile]
version = "3"
[dependencies.testcontainers-modules]
version = "0.11"
features = ["postgres"]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "1.1"