[package]
name = "sea-query-sqlite"
version = "0.1.0"
edition = "2024"
description = "sea-query-rusqlite clone"
license = "MIT"
authors = ["yaobos@outlook.com"]
repository = "https://github.com/yaobo-lab/sea-query-rusqlite.git"
[dependencies]
sea-query ={version = "0.32.7",default-features = false,features = ["backend-sqlite","derive"] }
rusqlite = { version = "0.37",features = ['bundled'] }
[features]
with-chrono = ["rusqlite/chrono", "sea-query/with-chrono"]
with-json = ["rusqlite/serde_json", "sea-query/with-json"]
with-rust_decimal = ["sea-query/with-rust_decimal"]
with-bigdecimal = ["sea-query/with-bigdecimal"]
with-uuid = ["rusqlite/uuid", "sea-query/with-uuid"]
with-time = ["rusqlite/time", "sea-query/with-time"]
with-ipnetwork = ["sea-query/with-ipnetwork"]
with-mac_address = ["sea-query/with-mac_address"]
postgres-array = ["sea-query/postgres-array"]
postgres-vector = ["sea-query/postgres-vector"]