little-hesinde/rusty-library/Cargo.toml

25 lines
733 B
TOML
Raw Normal View History

2024-05-02 16:10:29 +00:00
[package]
2024-05-06 08:55:18 +00:00
name = "rusty-library"
2024-05-02 16:10:29 +00:00
version = "0.1.0"
edition = "2021"
2024-05-06 17:33:58 +00:00
license = { workspace = true }
2024-05-02 16:10:29 +00:00
[dependencies]
calibre-db = { path = "../calibre-db/" }
clap = { version = "4.5.4", features = ["derive"] }
once_cell = "1.19.0"
poem = { version = "3.0.0", features = ["embed", "static-files"] }
rust-embed = "8.3.0"
2024-05-06 07:09:40 +00:00
serde = { workspace = true }
serde_json = "1.0.116"
2024-05-08 16:11:39 +00:00
serde_with = "3.8.1"
2024-05-02 16:10:29 +00:00
tera = "1.19.1"
thiserror = { workspace = true }
2024-05-09 09:18:47 +00:00
time = { workspace = true }
2024-05-02 16:10:29 +00:00
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"] }
tokio-util = "0.7.11"
2024-05-06 07:09:40 +00:00
tracing = "0.1.40"
2024-05-02 16:10:29 +00:00
tracing-subscriber = "0.3.18"
2024-05-06 07:09:40 +00:00
uuid = { version = "1.8.0", features = ["v4", "fast-rng"] }
2024-05-08 16:11:39 +00:00
quick-xml = { version = "0.31.0", features = ["serialize"] }