diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-08 17:16:06 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-08 17:16:06 +0200 |
commit | 70bb8744cd742dc6c8a71ab174e4a1b058c7bec8 (patch) | |
tree | 78c5a190856f1c6281e8773a05408ede02a13947 /server/replaytool | |
parent | a1921104e13c9cf39439ee424d54f7cece67fc5b (diff) | |
download | hurrycurry-70bb8744cd742dc6c8a71ab174e4a1b058c7bec8.tar hurrycurry-70bb8744cd742dc6c8a71ab174e4a1b058c7bec8.tar.bz2 hurrycurry-70bb8744cd742dc6c8a71ab174e4a1b058c7bec8.tar.zst |
split off protocol into its own crate
Diffstat (limited to 'server/replaytool')
-rw-r--r-- | server/replaytool/Cargo.toml | 7 | ||||
-rw-r--r-- | server/replaytool/src/main.rs | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/server/replaytool/Cargo.toml b/server/replaytool/Cargo.toml new file mode 100644 index 00000000..6983781d --- /dev/null +++ b/server/replaytool/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "hurrycurry-replaytool" +version = "0.1.0" +edition = "2021" + +[dependencies] +hurrycurry-protocol = { path = "../protocol" } diff --git a/server/replaytool/src/main.rs b/server/replaytool/src/main.rs new file mode 100644 index 00000000..58dfaaa8 --- /dev/null +++ b/server/replaytool/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + +} |