little-hesinde/calibre-db/Cargo.toml

18 lines
486 B
TOML
Raw Normal View History

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