1
Fork 0
mirror of https://github.com/RGBCube/dix synced 2025-07-31 13:47:46 +00:00

remove bloated dependency sqlx, switch to libsqlite3-sys

sqlx is way to large for this utility and also async,
which we currently do not use
This commit is contained in:
Dragyx 2025-05-06 01:15:50 +02:00
parent 55c969cfdf
commit eee8c920a7
6 changed files with 203 additions and 2169 deletions

View file

@ -10,5 +10,4 @@ yansi = "1.0.1"
thiserror = "2.0.12"
log = "0.4.20"
env_logger = "0.11.3"
sqlx = { version = "0.8.5", features = ["runtime-async-std", "sqlite"] }
async-std = "1.13.1"
rusqlite = { version = "0.35.0", features = ["bundled"] }