diff options
author | metamuffin <metamuffin@disroot.org> | 2025-10-06 23:03:32 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-10-06 23:03:40 +0200 |
commit | 176e6bc6c4c29bea3be2aceca99743b997c76c97 (patch) | |
tree | 1161e7a966843324756340da4b6452492902fa07 /server/Cargo.toml | |
parent | ea86b11b682500160f37b35ea8f06b081cd05036 (diff) | |
download | hurrycurry-176e6bc6c4c29bea3be2aceca99743b997c76c97.tar hurrycurry-176e6bc6c4c29bea3be2aceca99743b997c76c97.tar.bz2 hurrycurry-176e6bc6c4c29bea3be2aceca99743b997c76c97.tar.zst |
Move data code to own crate + general data refactor
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r-- | server/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml index e14bb84d..f72cb7fa 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -13,7 +13,6 @@ tokio = { version = "1.47.1", features = ["full"] } serde_json = "1.0.145" tokio-tungstenite = "0.27.0" futures-util = "0.3.31" -serde_yml = "0.0.12" rand = "0.9.2" rand_distr = "0.5.1" shlex = "1.3.0" @@ -34,6 +33,7 @@ hurrycurry-locale = { path = "locale" } hurrycurry-protocol = { path = "protocol" } hurrycurry-client-lib = { path = "client-lib" } hurrycurry-bot = { path = "bot" } +hurrycurry-data = { path = "data" } [target.'cfg(windows)'.dependencies] windows-registry = "0.6" @@ -44,4 +44,4 @@ mdns = ["dep:mdns-sd", "dep:get_if_addrs"] register = ["dep:reqwest"] upnp = ["dep:igd", "dep:get_if_addrs"] -fast_recipes = [] +fast_recipes = ["hurrycurry-data/fast_recipes"] |