add cargo metadata
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 1s
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 1s
This commit is contained in:
parent
2d7bd0ae48
commit
64639953f0
@ -11,3 +11,5 @@ time = { version = "0.3.36", features = ["macros", "serde", "formatting", "parsi
|
|||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
license = "AGPL-3.0"
|
license = "AGPL-3.0"
|
||||||
|
authors = ["Sebastian Hugentobler <shu@vanwa.ch>"]
|
||||||
|
repository = "https://code.vanwa.ch/shu/little-hesinde"
|
||||||
|
@ -3,6 +3,9 @@ name = "calibre-db"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = { workspace = true }
|
license = { workspace = true }
|
||||||
|
authors = { workspace = true }
|
||||||
|
repository = { workspace = true }
|
||||||
|
description = "Read data from a calibre library, leveraging its SQLite metadata database."
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
r2d2 = "0.8.10"
|
r2d2 = "0.8.10"
|
||||||
|
@ -3,9 +3,12 @@ name = "little-hesinde"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = { workspace = true }
|
license = { workspace = true }
|
||||||
|
authors = { workspace = true }
|
||||||
|
repository = { workspace = true }
|
||||||
|
description = "A very simple ebook server for a calibre library, providing a html interface as well as an OPDS feed."
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
calibre-db = { path = "../calibre-db/" }
|
calibre-db = { path = "../calibre-db/", version = "0.1.0" }
|
||||||
clap = { version = "4.5.4", features = ["derive"] }
|
clap = { version = "4.5.4", features = ["derive"] }
|
||||||
once_cell = "1.19.0"
|
once_cell = "1.19.0"
|
||||||
poem = { version = "3.0.0", features = ["embed", "static-files"] }
|
poem = { version = "3.0.0", features = ["embed", "static-files"] }
|
||||||
|
Loading…
Reference in New Issue
Block a user