tiny-orm-macros 0.4.0

Macros for Tiny ORM. Not intended to be used directly.
Documentation
[package]
name = "tiny-orm-macros"
version = "0.4.0"
edition = "2021"
rust-version = "1.74.1"
authors = ["Matt Delacour - mdelacour.com"]
description = "Macros for Tiny ORM. Not intended to be used directly."
license = "MIT"
repository = "https://github.com/MattDelac/tiny_orm"

[lib]
proc-macro = true

[dependencies]
syn = { version = "2.0", features = ["full", "extra-traits"] }
tiny-orm-model = { version = "0.4.0", path = "../tiny-orm-model" }
quote = "1.0"
proc-macro2 = "1.0"
convert_case = "<1.0"
regex = "< 2.0"
once_cell = "< 2.0"

[features]
default = []
sqlite = ["sqlx/sqlite"]
postgres = ["sqlx/postgres"]
mysql = ["sqlx/mysql"]

[dev-dependencies]
sqlx = { version = "0.8.3", features = ["runtime-tokio-native-tls", "sqlite", "chrono", "uuid"] }
tokio = { version = "1.41.0", features = ["rt", "macros"]}
uuid = {version = "1.11.0", features = ["v4"]}