diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..4b9fc94 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "hydra" +version = "0.1.0" +edition = "2021" + +[dependencies] +mt_net = { git = "https://github.com/minetest-rust/mt_net", version = "0.1.0", features = ["conn", "client"] } +rand = "0.8.5" +sha2 = "0.10.6" +srp = "0.6.0" +tokio = { version = "1.25.0", features = ["rt", "rt-multi-thread"] } |