KeiSeiKit-1.0/_primitives/_rust/kei-migrate/Cargo.toml
Parfii-bot 0be354a920 KeiSeiKit-public — clean state
Single-commit clean baseline after security scrub of niche-tells,
project codenames, internal jargon, and contributor-email leaks.

Contents:
- 100 Rust crates (_primitives/_rust/)
- 37 agent manifests (_manifests/) + generated specs (_generated/)
- 67 user-invocable skills (skills/)
- 33 hooks (hooks/)
- Composition blocks (_blocks/)
- Documentation (docs/, README.md)
- TS adapter packages (_ts_packages/)
- Assembler (_assembler/)
- Roles (_roles/)
- Templates (_templates/)
- Forgejo CI (.forgejo/)

Author: Denis Parfionovich <info@greendragon.info>

License: see LICENSE.
2026-05-01 12:09:03 +08:00

29 lines
745 B
TOML

[package]
name = "kei-migrate"
version = "0.1.0"
edition = "2021"
description = "Universal SQL migration runner — Postgres/SQLite/MySQL autodetect from DATABASE_URL"
authors = ["Denis Parfionovich <info@greendragon.info>"]
license = "Apache-2.0"
[[bin]]
name = "kei-migrate"
path = "src/main.rs"
[dependencies]
anyhow = "1"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
clap = { version = "4", features = ["derive", "env"] }
sha2 = "0.10"
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio",
"tls-rustls",
"any",
"postgres",
"sqlite",
"mysql",
] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs"] }
[dev-dependencies]
tempfile = "3"