-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 734 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "sql-gen"
version = "0.2.3"
edition = "2021"
description = "A CLI tool for generating models based on a SQL Database using SQLx"
license = "MIT"
repository = "https://github.com/jayy-lmao/sql-gen"
[dependencies]
sqlx = { version = "0.8.3", features = ["postgres","runtime-tokio", "mysql"] }
sqlx-cli = "0.8.3"
clap = { version = "4.5.31", features = ["derive"] }
regex = "1.5"
chrono = "0.4"
tokio = { version = "1", features = ["full"] }
dotenv = "0.15.0"
pretty_assertions = "1.4.1"
syn = { version="2.0.98", features=["full"] }
convert_case = "0.8.0"
pluralizer = "0.5.0"
quote = "1.0.37"
proc-macro2 = "1.0.89"
prettyplease = "0.2.25"
uuid = { version = "1.15.1", features = ["serde", "v4"] }
fd-lock = "4.0.3"