Skip to content

Commit

Permalink
Make serde-wasm-bindgen optional in core (#2089)
Browse files Browse the repository at this point in the history
  • Loading branch information
akavel authored Nov 6, 2024
1 parent 9b9c9f1 commit 107da33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ bench = false
default = ["markdown", "repl", "doc", "format"]
markdown = ["dep:termimad"]
repl = ["dep:rustyline", "dep:rustyline-derive", "dep:ansi_term"]
repl-wasm = ["dep:wasm-bindgen", "dep:js-sys", "dep:serde_repr"]
repl-wasm = ["dep:wasm-bindgen", "dep:js-sys", "dep:serde_repr", "dep:serde-wasm-bindgen"]
doc = ["dep:comrak"]
format = ["dep:topiary-core", "dep:topiary-queries", "dep:tree-sitter-nickel"]
metrics = ["dep:metrics"]
Expand Down Expand Up @@ -65,7 +65,7 @@ rustyline = { workspace = true, optional = true}
rustyline-derive = { workspace = true, optional = true }

wasm-bindgen = { workspace = true, optional = true, features = ["serde-serialize"] }
serde-wasm-bindgen.workspace = true
serde-wasm-bindgen = { workspace = true, optional = true }
js-sys = { workspace = true, optional = true }
serde_repr = { workspace = true, optional = true }
pretty.workspace = true
Expand Down

0 comments on commit 107da33

Please sign in to comment.