diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-11 00:22:49 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-11 00:30:43 +0200 |
commit | f4499b7a0e808d84157e6148afef4f844a7007cf (patch) | |
tree | 354d970af16a4b3d6217575d259cf1afc0faf291 /server/bot/Cargo.toml | |
parent | 0f6a824cb4c6d36dda485a939d9c640ec234d802 (diff) | |
download | hurrycurry-f4499b7a0e808d84157e6148afef4f844a7007cf.tar hurrycurry-f4499b7a0e808d84157e6148afef4f844a7007cf.tar.bz2 hurrycurry-f4499b7a0e808d84157e6148afef4f844a7007cf.tar.zst |
factor out client network code to client-lib
Diffstat (limited to 'server/bot/Cargo.toml')
-rw-r--r-- | server/bot/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/bot/Cargo.toml b/server/bot/Cargo.toml index 259095ab..157472ae 100644 --- a/server/bot/Cargo.toml +++ b/server/bot/Cargo.toml @@ -4,4 +4,5 @@ version = "0.1.0" edition = "2021" [dependencies] -hurrycurry-client-lib = { path = "../client-lib" } +hurrycurry-client-lib = { path = "../client-lib", features = ["tokio-network"] } +log = "0.4.22" |