[package]
edition = "2024"
rust-version = "1.94"
name = "toasty-cli"
version = "0.2.0"
authors = ["Carl Lerche <me@carllerche.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for Toasty schema management"
homepage = "https://github.com/tokio-rs/toasty"
documentation = "https://docs.rs/toasty-cli"
readme = "README.md"
keywords = [
"orm",
"database",
"sql",
"nosql",
"async",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/tokio-rs/toasty"
resolver = "2"
[lib]
name = "toasty_cli"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.console]
version = "0.16"
[dependencies.dialoguer]
version = "0.12"
[dependencies.rand]
version = "0.10"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.toasty]
version = "0.2.0"
[dependencies.toasty-core]
version = "0.2.0"
features = ["serde"]
[dependencies.toasty-sql]
version = "0.2.0"
[dependencies.toml]
version = "1.1.0"
[dependencies.toml_edit]
version = "0.25.8"
features = ["serde"]
[dependencies.url]
version = "2.5.8"
[lints.rust]
unsafe_code = "deny"