[package]
name = "derive-sql-statement"
version = "0.13.0"
edition = "2021"
license = "MIT"
description = "Accompany the `derive-sql` crate. Implements the `DeriveSqlStatement` procedural macro to implement traits allowing read/write/update/etc statement functionalities"
repository = "https://github.com/juliendecharentenay/derive-sql"
[lib]
proc-macro = true
[dependencies]
syn = "2"
quote = "1"
proc-macro2 = "1"
attribute-derive = "0.8.1"
derive-sql-common = { version = "0" }
[dev-dependencies]
derive-sql = { version = "0", features = [ "sqlite", "mysql", "postgres" ] }
env_logger = "0"
log = "0"