mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
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:
parent
b9bfb3f1dd
commit
a5199a966a
@ -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 }
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user