diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-05-27 22:46:32 +0200 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-05-27 22:52:48 +0200 |
commit | f334d255023c2b02d64c030d11329061657fd5ae (patch) | |
tree | 5a3ed18d849fa77bfe675e81893e5f6358e14d09 | |
parent | 530e56b82f1866bf38a99e86a43d09ffe91e2b4c (diff) | |
download | texmodbot-f334d255023c2b02d64c030d11329061657fd5ae.tar.xz |
Fix mt_auth url
-rw-r--r-- | Cargo.lock | 1 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -527,6 +527,7 @@ dependencies = [ [[package]] name = "mt_auth" version = "0.1.0" +source = "git+https://github.com/minetest-rust/mt_auth#482cfb4f09f9ca0bd191c7b703dfb374e55337f0" dependencies = [ "futures", "mt_net", @@ -6,4 +6,4 @@ edition = "2021" [dependencies] mt_net = { git = "https://github.com/minetest-rust/mt_net", features = ["conn", "client"] } tokio = { version = "1.25.0", features = ["rt", "rt-multi-thread", "signal"] } -mt_auth = { path = "../mt_auth" } +mt_auth = { git = "https://github.com/minetest-rust/mt_auth" } |