2022-11-21 01:07:17 +08:00
|
|
|
[package]
|
|
|
|
name = "rusqlite-macros"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The rusqlite developers"]
|
|
|
|
edition = "2021"
|
|
|
|
description = "Private implementation detail of rusqlite crate"
|
|
|
|
repository = "https://github.com/rusqlite/rusqlite"
|
|
|
|
license = "MIT"
|
|
|
|
categories = ["database"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-12 20:00:23 +08:00
|
|
|
sqlite3-parser = { version = "0.12", default-features = false, features = ["YYNOERRORRECOVERY"] }
|
2023-06-10 18:05:55 +08:00
|
|
|
fallible-iterator = "0.3"
|
2023-12-23 19:10:36 +08:00
|
|
|
litrs = { version = "0.4", default-features = false }
|