[package]
edition = "2021"
name = "modelstruct"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust crate that provides a derive macro Model to automatically generate SQL CREATE TABLE IF NOT EXISTS statements from struct definitions."
homepage = "https://github.com/famz/modelstruct"
readme = "README.md"
license = "MIT"
repository = "https://github.com/famz/modelstruct"
[lib]
name = "modelstruct"
path = "src/lib.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.modelstruct_derive]
version = "0.1.0"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = ["full"]