dbml_diff_mysql 0.1.3

A tool to diff two DBML files and generate SQL migration scripts for MySQL.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "dbml_diff_mysql"
version = "0.1.3"
edition = "2021"
license = "MIT"
description = "A tool to diff two DBML files and generate SQL migration scripts for MySQL."
repository = "https://github/"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dbml-rs = "0.1.0-beta.2"
serde = "1.0.163"
serde_json = "1.0.96"
tokio = { version = "1.28.2", features = [ "rt", "rt-multi-thread", "macros"] }
sqlx = {version = "0.7.2", features = ["mysql", "runtime-tokio","macros","json", "runtime-tokio-native-tls"]}
envmnt = "0.10.4"
lazy_static = "1.4.0"