Skip to content

Commit

Permalink
third-party/rust: Disable default features in num_enum crate
Browse files Browse the repository at this point in the history
Summary: The default platform adds "std" back in, but this allows the no_std universe to build with no std..

Reviewed By: jsgf

Differential Revision: D54934898

fbshipit-source-id: b64c170aee976eda1cffde1ff18bccc24c6c1267
  • Loading branch information
David Reiss authored and facebook-github-bot committed Mar 19, 2024
1 parent e166a96 commit d92f8d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ path = "print_cst.rs"
bstr = { version = "1.4.0", features = ["serde", "std", "unicode"] }
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
itertools = "0.11.0"
num_enum = "0.5"
num_enum = { version = "0.5", default-features = false }
ocamlrep = { path = "vendor/ocaml/interop/ocamlrep" }
ocamlrep_ocamlpool = { path = "vendor/ocaml/interop/ocamlrep_ocamlpool" }
phf = { version = "0.11", features = ["macros"] }
Expand Down

0 comments on commit d92f8d9

Please sign in to comment.