diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-07 17:32:43 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-07 17:32:43 +0200 |
| commit | 30bfe4dc801fdfd3ab8d7a5e36bba67eee70d33b (patch) | |
| tree | 59c6b9676e555f2264a1e8bd0f2b4f0fa7acd4e7 /server/book-export/Cargo.toml | |
| parent | f01b9bb2375e1dbaede262c6281dc3a3d068cbb1 (diff) | |
| download | hurrycurry-30bfe4dc801fdfd3ab8d7a5e36bba67eee70d33b.tar hurrycurry-30bfe4dc801fdfd3ab8d7a5e36bba67eee70d33b.tar.bz2 hurrycurry-30bfe4dc801fdfd3ab8d7a5e36bba67eee70d33b.tar.zst | |
Split book exporting to own crate; move locale tool to server dir
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" |