[package] name = "ormlitex-macro" version = "0.17.1" edition = "2021" description = "An ORM for people who love SQL. Use the `ormlitex` crate, not this one." authors = ["Kurt Wolf "] license = "MIT" repository = "https://github.com/holmofy/ormlitex" [lib] proc-macro = true [features] postgres = [] sqlite = [] mysql = [] runtime-tokio-rustls = ["sqlx/runtime-tokio-rustls"] default-sqlite = ["sqlite"] default-postgres = ["postgres"] default-mysql = ["mysql"] [dependencies] syn = { version = "2", features = ["derive", "parsing"] } quote = "1" proc-macro2 = "1" ormlitex-core = { path = "../core", version = "0.17.1"} ormlitex-attr = { path = "../attr", version = "0.17" } sqlx = "0.7" lazy_static = "1" once_cell = "1" itertools = "0.11"