[package]
edition = "2024"
name = "wae-tools"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WAE Tools - 开发工具,数据库迁移、自动迁移"
homepage = "https://github.com/oovm/wae/tree/main/backends/wae-tools"
documentation = "https://docs.rs/wae-tools"
readme = "README.md"
keywords = [
"tools",
"migration",
"database",
"cli",
]
categories = [
"development-tools",
"database",
]
license = "MIT"
repository = "https://github.com/oovm/wae/tree/main/backends/wae-tools"
resolver = "2"
[features]
database-mysql = ["wae-database/mysql"]
database-postgres = ["wae-database/postgres"]
database-turso = ["wae-database/turso"]
default = []
[lib]
name = "wae_tools"
path = "src/lib.rs"
[[bin]]
name = "wae-tools"
path = "src/main.rs"
[[test]]
name = "auto_migrate_tests"
path = "tests/auto_migrate_tests.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[[test]]
name = "migration_tests"
path = "tests/migration_tests.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.figment]
version = "0.10.19"
features = [
"toml",
"yaml",
"env",
]
[dependencies.notify]
version = "8.2.0"
[dependencies.notify-debouncer-mini]
version = "0.7.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.tokio]
version = "1.50.0"
features = ["full"]
[dependencies.tracing]
version = "0.1.44"
features = [
"std",
"attributes",
]
[dependencies.wae-database]
version = "0.0.1"
optional = true
[dependencies.wae-types]
version = "0.0.1"