Skip to content

Commit 47c71ea

Browse files
committed
chore: fix serde feature flags
1 parent 1793054 commit 47c71ea

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ pretty_env_logger = { workspace = true }
7777
indexmap = { workspace = true }
7878
cargo_metadata = { workspace = true }
7979
serde_json = { workspace = true, features = ["std"] }
80-
serde = { workspace = true }
80+
serde = { workspace = true, features = ["std"] }
8181
prettyplease = { workspace = true }
8282
convert_case = { workspace = true }
8383
chrono = { workspace = true }

codegen/crates/crate_feature_graph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ dot_parser = ["petgraph/dot_parser"]
1919
serde = ["dep:serde", "dep:serde_json"]
2020

2121
[dependencies]
22+
serde = { workspace = true, features = ["derive", "std"], optional = true }
2223
petgraph = { workspace = true }
2324
cargo_metadata = { workspace = true }
2425
itertools = { workspace = true }
2526
log = { workspace = true }
2627
clap = { workspace = true, features = ["derive"] }
27-
serde = { workspace = true, features = ["derive"], optional = true }
2828
serde_json = { workspace = true, optional = true, features = ["std"] }
2929
pretty_env_logger = { workspace = true }
3030
indexmap = { workspace = true, features = ["serde"] }

crates/bevy_mod_scripting_asset/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ readme.workspace = true
1515
bevy_reflect = { workspace = true }
1616
bevy_asset = { workspace = true }
1717
bevy_log = { workspace = true }
18-
serde = { workspace = true, features = ["derive"] }
18+
serde = { workspace = true, features = ["derive", "std"] }
1919
[lints]
2020
workspace = true

crates/bevy_mod_scripting_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ smallvec = { workspace = true }
4141
itertools = { workspace = true }
4242
profiling = { workspace = true }
4343
fixedbitset = { workspace = true }
44-
serde = { workspace = true, features = ["derive"] }
44+
serde = { workspace = true, features = ["derive", "std"] }
4545
uuid = { workspace = true }
4646
variadics_please = { workspace = true }
4747

crates/ladfile/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords.workspace = true
1212
categories.workspace = true
1313

1414
[dependencies]
15-
serde = { workspace = true, features = ["derive"] }
15+
serde = { workspace = true, features = ["derive", "std"] }
1616
serde_json = { workspace = true, features = ["std"] }
1717
indexmap = { workspace = true, features = ["serde"] }
1818

crates/testing_crates/script_integration_test_harness/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ rand = { workspace = true }
3535
rand_chacha = { workspace = true }
3636
uuid = { workspace = true }
3737
anyhow = { workspace = true }
38-
serde = { workspace = true, features = ["derive"] }
38+
serde = { workspace = true, features = ["derive", "std"] }
3939
serde_json = { workspace = true, features = ["std"] }

0 commit comments

Comments
 (0)