diff --git a/Cargo.toml b/Cargo.toml index 96444e1..dcf3448 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,3 +11,5 @@ time = { version = "0.3.36", features = ["macros", "serde", "formatting", "parsi [workspace.package] license = "AGPL-3.0" +authors = ["Sebastian Hugentobler "] +repository = "https://code.vanwa.ch/shu/little-hesinde" diff --git a/calibre-db/Cargo.toml b/calibre-db/Cargo.toml index a694661..d7d4013 100644 --- a/calibre-db/Cargo.toml +++ b/calibre-db/Cargo.toml @@ -3,6 +3,9 @@ name = "calibre-db" version = "0.1.0" edition = "2021" license = { workspace = true } +authors = { workspace = true } +repository = { workspace = true } +description = "Read data from a calibre library, leveraging its SQLite metadata database." [dependencies] r2d2 = "0.8.10" diff --git a/little-hesinde/Cargo.toml b/little-hesinde/Cargo.toml index 4a10942..4ec0118 100644 --- a/little-hesinde/Cargo.toml +++ b/little-hesinde/Cargo.toml @@ -3,9 +3,12 @@ name = "little-hesinde" version = "0.1.0" edition = "2021" 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] -calibre-db = { path = "../calibre-db/" } +calibre-db = { path = "../calibre-db/", version = "0.1.0" } clap = { version = "4.5.4", features = ["derive"] } once_cell = "1.19.0" poem = { version = "3.0.0", features = ["embed", "static-files"] }