diff --git a/Cargo.toml b/Cargo.toml index df11d5e..b679609 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ num-integer = "0.1.45" num_cpus = "1.16.0" rayon = "1.7.0" rustc-hash = "1.1.0" -serde = { version = "1.0.152", features = ["rc"] } +serde = { version = "1.0.152", features = ["rc", "derive"] } serde_json = "1.0.99" tokio = { version = "1.31.0", features = ["rt", "parking_lot", "sync"] } zstd = "0.12.3" diff --git a/crates/resource/Cargo.toml b/crates/resource/Cargo.toml index 2436548..a0ba3ad 100644 --- a/crates/resource/Cargo.toml +++ b/crates/resource/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" [dependencies] enumflags2 = { version = "0.7.7", features = ["serde"] } glam = "0.24.1" -serde = "1.0.183" +serde = { version = "1.0.183", features = ["derive"] } diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index fae230b..50a41fa 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] itertools = "0.11.0" -serde = "1.0.183" +serde = { version = "1.0.183", features = ["derive"] }