Include required serde feature for enum-map in veloren-common

This previously broke torvus builds, but worked fine for builds here
since veloren-rtsim enabled the serde feature.
This commit is contained in:
maxicarlos08 2023-11-16 21:47:44 +01:00
parent b9bfb3f1dd
commit a5199a966a
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ common-base = { package = "veloren-common-base", path = "base" }
serde = { workspace = true, features = ["rc"] }
# Util
enum-map = "2.4"
enum-map = { workspace = true, features = ["serde"] }
vek = { workspace = true }
chrono = { workspace = true }
chrono-tz = { workspace = true }

View File

@ -130,7 +130,7 @@ itertools = { workspace = true }
# Discord RPC
discord-sdk = { version = "0.3.0", optional = true }
enum-map = "2.5.0"
enum-map = { workspace = true }
[target.'cfg(target_os = "macos")'.dependencies]
dispatch = "0.1.4"