22 lines
443 B
TOML
22 lines
443 B
TOML
[package]
|
|
name = "generator_cli"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "sqlx-generator"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.95"
|
|
argh = "0.1.13"
|
|
attribute-derive = "0.10.3"
|
|
convert_case = "0.6.0"
|
|
fully_pub = "0.1.4"
|
|
heck = "0.5.0"
|
|
prettyplease = "0.2.25"
|
|
proc-macro2 = "1.0.92"
|
|
quote = "1.0.38"
|
|
serde = "1.0.216"
|
|
serde_json = "1.0.134"
|
|
structmeta = "0.3.0"
|
|
syn = { version = "2.0.92", features = ["extra-traits", "full", "parsing"] }
|