sqlx_insert_derive 0.1.0

Proc macro for generating insert statements for sqlx
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "sqlx_insert_derive"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/Szymongib/sqlx-insert"
description = "Proc macro for generating insert statements for sqlx"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
proc-macro = true

[dependencies]
syn = { version = "1", features = ["full"]}
quote = "1"
proc-macro2 = { version = "1.0.36", default-features = false }
async-trait = "0.1.52"