sqlxgentools/lib/sqlxgentools_cli/Cargo.toml

32 lines
727 B
TOML
Raw Normal View History

2024-12-27 23:00:38 +01:00
[package]
2025-03-15 10:21:53 +01:00
name = "sqlxgentools_cli"
description = "CLI to generate SQL migrations and repositories code that use sqlx from models definition."
publish = true
edition.workspace = true
authors.workspace = true
version.workspace = true
license.workspace = true
repository.workspace = true
2024-12-27 23:00:38 +01:00
[[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"
2025-01-27 09:08:04 +01:00
heck = "0.5.0"
2024-12-27 23:00:38 +01:00
prettyplease = "0.2.25"
proc-macro2 = "1.0.92"
quote = "1.0.38"
serde = "1.0.216"
2025-01-27 09:08:04 +01:00
serde_json = "1.0.134"
2024-12-27 23:00:38 +01:00
structmeta = "0.3.0"
syn = { version = "2.0.92", features = ["extra-traits", "full", "parsing"] }
[lints.clippy]
uninlined_format_args = "allow"