2024-12-27 23:00:38 +01:00
|
|
|
[package]
|
2025-03-15 10:21:53 +01:00
|
|
|
name = "sqlxgentools_attrs"
|
2025-10-12 15:09:10 +02:00
|
|
|
description = "Proc-macros to allow automatic migrations and repositories generation from models by the sqlxgentools CLI tools."
|
|
|
|
|
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
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
attribute-derive = "0.10.3"
|
|
|
|
|
proc-macro2 = "1.0.92"
|
2025-11-11 17:10:47 +01:00
|
|
|
quote = "1.0"
|
|
|
|
|
syn = { version = "1.0" }
|
2024-12-27 23:00:38 +01:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
proc-macro = true
|
2025-10-11 23:12:17 +02:00
|
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
|
uninlined_format_args = "allow"
|