diff options
Diffstat (limited to 'server/book-export/Cargo.toml')
| -rw-r--r-- | server/book-export/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/server/book-export/Cargo.toml b/server/book-export/Cargo.toml new file mode 100644 index 00000000..d106dab8 --- /dev/null +++ b/server/book-export/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "hurrycurry-book-export" +version = "0.1.0" +edition = "2024" + +[dependencies] +anyhow = "1.0.100" +log = "0.4.28" +env_logger = "0.11.8" +clap = { version = "4.5.47", features = ["derive"] } +hurrycurry-protocol = { path = "../protocol" } +hurrycurry-locale = { path = "../locale" } +hurrycurry-data = { path = "../data" } +serde_json = "1.0.145" +markup = "0.15.0" |