diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-19 22:27:46 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-19 22:40:39 +0200 |
commit | 402067b8317195fd2bc4ab4d92b5ace94fadb7c0 (patch) | |
tree | 2437c52ae71a11c4d17a6fa4597f8152dae96ddc /server/tools/Cargo.toml | |
parent | 2f311fec691cd7a62fa4f95ee0419089913b5dd8 (diff) | |
download | hurrycurry-402067b8317195fd2bc4ab4d92b5ace94fadb7c0.tar hurrycurry-402067b8317195fd2bc4ab4d92b5ace94fadb7c0.tar.bz2 hurrycurry-402067b8317195fd2bc4ab4d92b5ace94fadb7c0.tar.zst |
Refactor book part 1
Diffstat (limited to 'server/tools/Cargo.toml')
-rw-r--r-- | server/tools/Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/server/tools/Cargo.toml b/server/tools/Cargo.toml new file mode 100644 index 00000000..1a6d6aa3 --- /dev/null +++ b/server/tools/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "hurrycurry-tools" +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-server = { path = ".." } +serde_json = "1.0.145" +serde = { version = "1.0.225", features = ["derive"] } |