[package]
edition = "2021"
name = "sql-peas"
version = "0.38.1"
authors = [
"Alec Moskvin <alecm@gmx.com>",
"Angel Leon <gubatron@gmail.com>",
"Cecile Tonglet <cecile.tonglet@cecton.com>",
"Daniel Dulaney <ddy@vitronic.com>",
"Eugenio Tampieri <eugenio@eutampieri.eu>",
"Ivan Stankovic <pokemon@fly.srk.fer.hr>",
"Ivan Ukhov <ivan.ukhov@gmail.com>",
"Jake Kerr <kodafox@gmail.com>",
"James Haywood <jameshaywood@fastmail.com>",
"Jayson Reis <santosdosreis@gmail.com>",
"Jonatan Lemes <jlemes@lenovo.com>",
"Luna Lux <l.lux@magenta.de>",
"Pierre Krieger <pierre.krieger1708@gmail.com>",
"ReactorScram",
"Sean Klein <seanmarionklein@gmail.com>",
"Sophie Tauchert <999eagle@999eagle.moe>",
"Tomoki Aonuma <uasi@uasi.jp>",
"Vincenzo Palazzo <vincenzopalazzodev@gmail.com>",
"Yorhel <git@yorhel.nl>",
"kodeschreiber",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The package provides an interface to SQLite."
homepage = "https://github.com/ReactorScram/sqlite"
readme = "README.md"
keywords = ["database"]
categories = [
"api-bindings",
"database",
]
license-file = "LICENSE.md"
repository = "https://github.com/ReactorScram/sqlite"
[features]
bundled = ["sqlite3-sys/bundled"]
default = ["linkage"]
encryption = ["sqlite3-sys/encryption"]
extension = []
linkage = ["sqlite3-sys/linkage"]
[lib]
name = "sql_peas"
path = "src/lib.rs"
[[test]]
name = "connection"
path = "tests/connection.rs"
[[test]]
name = "cursor"
path = "tests/cursor.rs"
[[test]]
name = "row"
path = "tests/row.rs"
[[test]]
name = "statement"
path = "tests/statement.rs"
[[bench]]
name = "cursor"
path = "benches/cursor.rs"
[[bench]]
name = "statement"
path = "benches/statement.rs"
[dependencies.sqlite3-sys]
version = "0.18"
default-features = false
[dev-dependencies.temporary]
version = "0.7"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]