sqlite3_ext 0.1.1

Build loadable extensions for SQLite using Rust
[[example]]
crate-type = ["cdylib", "staticlib"]
name = "generate_series"
test = true

[[example]]
crate-type = ["cdylib", "staticlib"]
name = "decimal"
required-features = ["bigdecimal"]
test = true

[[test]]
name = "loadable_extension"
required-features = ["static_modern"]

[[test]]
name = "with_rusqlite"
required-features = ["with_rusqlite"]
[build-dependencies.proc-macro2]
version = "1.0"

[build-dependencies.quote]
version = "1.0"

[build-dependencies.syn]
features = ["parsing", "full"]
version = "1.0"

[build-dependencies.which]
version = "4.2.5"
[dependencies.bigdecimal]
optional = true
version = "0.3.0"

[dependencies.bitflags]
version = "1.3.2"

[dependencies.fallible-iterator]
version = "0.2.0"

[dependencies.libsqlite3-sys]
optional = true
version = "0.24.2"

[dependencies.paste]
version = "1.0.7"

[dependencies.rusqlite]
optional = true
version = "0.27.0"

[dependencies.sealed]
version = "0.4.0"

[dependencies.sqlite3_ext_macro]
version = "0.1.0"
[dev-dependencies.indoc]
version = "1.0"

[dev-dependencies.lazy_static]
version = "1.4.0"

[dev-dependencies.nom]
version = "7.1.1"

[dev-dependencies.pretty_assertions]
version = "1.2.1"

[dev-dependencies.regex]
version = "1.5.6"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.subprocess]
version = "0.2.9"

[dev-dependencies.trybuild]
version = "1.0.63"

[features]
bundled = ["static_modern", "libsqlite3-sys?/bundled"]
static = ["dep:libsqlite3-sys"]
static_modern = ["static", "libsqlite3-sys?/bundled_bindings"]
with_rusqlite = ["dep:rusqlite", "static"]

[package]
authors = ["The sqlite3_ext developers"]
categories = ["database"]
description = "Build loadable extensions for SQLite using Rust"
edition = "2021"
homepage = "https://github.com/CGamesPlay/sqlite3_ext"
keywords = ["database", "sqlite", "ffi"]
license = "blessing"
name = "sqlite3_ext"
readme = "README.md"
repository = "https://github.com/CGamesPlay/sqlite3_ext"
version = "0.1.1"
[package.metadata.docs.rs]
features = ["bundled", "with_rusqlite"]
rustdoc-args = ["--cfg", "docsrs"]