Bundle SQLite with rusqlite

This commit is contained in:
Elnu 2022-07-23 12:03:39 -07:00
parent 043bdec728
commit 90ffd9cf3b
2 changed files with 2 additions and 1 deletions

1
Cargo.lock generated
View file

@ -908,6 +908,7 @@ version = "0.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14"
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]

View file

@ -13,7 +13,7 @@ codegen-units = 1
[dependencies]
actix-web = "4"
actix-cors = "0.6.1"
rusqlite = { version = "0.27.0", features = ["chrono"] }
rusqlite = { version = "0.27.0", features = ["chrono", "bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
validator = { version = "0.15.0", features = ["derive"] }