bare bones calibre db reading

This commit is contained in:
Sebastian Hugentobler 2024-05-01 16:21:07 +02:00
commit 65e17fc55b
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
13 changed files with 790 additions and 0 deletions

8
calibre-db/Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "calibre-db"
version = "0.1.0"
edition = "2021"
[dependencies]
rusqlite = { version = "0.31.0", features = ["bundled"] }
thiserror = "1.0.59"