rorm-cli 0.9.1

The cli tool for managing rorm applications.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "rorm-cli"
version = "0.9.1"
authors = ["myOmikron <git@omikron.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The cli tool for managing rorm applications."
homepage = "https://rorm.rs"
documentation = "https://docs.rorm.rs"
readme = "README.md"
keywords = [
    "cli",
    "database",
    "migrator",
    "orm",
]
categories = [
    "command-line-utilities",
    "database",
]
license = "MIT"
repository = "https://github.com/rorm-orm/rorm-cli"

[features]
default = [
    "sqlite",
    "mysql",
    "postgres",
]
mysql = [
    "rorm-db/mysql",
    "rorm-declaration/mysql",
]
postgres = [
    "rorm-db/postgres",
    "rorm-declaration/postgres",
]
sqlite = [
    "rorm-db/sqlite",
    "rorm-declaration/sqlite",
]

[lib]
name = "rorm_cli"
path = "src/lib.rs"

[[bin]]
name = "rorm-cli"
path = "src/main.rs"

[dependencies.anyhow]
version = "~1"

[dependencies.clap]
version = "~4"
features = ["derive"]

[dependencies.once_cell]
version = "~1"

[dependencies.regex]
version = "~1"

[dependencies.rorm-db]
version = "~0.11"

[dependencies.rorm-declaration]
version = "~0.4"

[dependencies.rpassword]
version = "~7"

[dependencies.serde]
version = "~1"
features = ["derive"]

[dependencies.serde_json]
version = "~1"

[dependencies.tokio]
version = ">=1.23.1"
features = [
    "macros",
    "rt",
]

[dependencies.toml]
version = "~0.7"

[dev-dependencies.temp-dir]
version = "~0.1"