little-hesinde/calibre-db/Cargo.toml

17 lines
466 B
TOML
Raw Permalink Normal View History

2024-05-01 14:21:07 +00:00
[package]
name = "calibre-db"
version = "0.1.0"
edition = "2021"
2024-05-06 17:33:58 +00:00
license = { workspace = true }
2024-05-10 19:03:14 +00:00
authors = { workspace = true }
repository = { workspace = true }
description = "Read data from a calibre library, leveraging its SQLite metadata database."
2024-05-01 14:21:07 +00:00
[dependencies]
2024-05-02 16:10:29 +00:00
r2d2 = "0.8.10"
r2d2_sqlite = "0.24.0"
2024-05-09 09:18:47 +00:00
rusqlite = { version = "0.31.0", features = ["bundled", "time"] }
2024-05-02 16:10:29 +00:00
serde = { workspace = true }
thiserror = { workspace = true }
2024-05-09 09:18:47 +00:00
time = { workspace = true }