Skip to content

Commit

Permalink
fix: problem of feature configuration (#210)
Browse files Browse the repository at this point in the history
The usage of the serde feature activated the rhai feature, despite
 the fact that it was disabled
  • Loading branch information
pythonbrad authored Mar 25, 2024
1 parent f39ea90 commit 4a814b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/translator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ default = ["rhai", "strsim"]
rhai = ["dep:rhai"]
rhai-wasm = ["rhai", "rhai/wasm-bindgen"]
strsim = ["dep:strsim"]
serde = ["indexmap/serde", "rhai/serde"]
serde = ["indexmap/serde", "rhai?/serde"]

[dependencies]
rhai = { version = "1.17.1", optional = true, features = ["only_i32", "no_float", "no_closure", "unchecked", "no_position", "no_custom_syntax"] }
Expand Down

0 comments on commit 4a814b1

Please sign in to comment.