[package]
edition = "2021"
rust-version = "1.75"
name = "authkit-cli"
version = "0.1.0"
authors = ["Akshay B <akshay2642005@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for AuthKit database schema management"
homepage = "https://github.com/Akshay2642005/authkit-cli"
documentation = "https://docs.rs/authkit-cli"
readme = "README.md"
keywords = [
"authentication",
"database",
"migrations",
"cli",
"schema",
]
categories = [
"command-line-utilities",
"database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Akshay2642005/authkit-cli"
[[bin]]
name = "authkit"
path = "src/main.rs"
[[test]]
name = "integration_postgres"
path = "tests/integration_postgres.rs"
[[test]]
name = "integration_sqlite"
path = "tests/integration_sqlite.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.colored]
version = "2"
[dependencies.dialoguer]
version = "0.11"
[dependencies.hex]
version = "0.4"
[dependencies.indicatif]
version = "0.17"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"sqlite",
"postgres",
"any",
"tls-rustls",
]
default-features = false
[dependencies.tabled]
version = "0.15"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.28"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.0"
[dev-dependencies.tempfile]
version = "3.10"
[profile.release]
lto = true
codegen-units = 1
strip = true