Skip to content

Commit

Permalink
Explicitly enable indexmap's "std" feature
Browse files Browse the repository at this point in the history
The indexmap crate uses the autocfg crate to do target detection to
determine whether `std` is available. Arrow isn't targeting `no_std`
environments, so the target detection isn't necessary. This might save
some build time.

indexmap-rs/indexmap#145
  • Loading branch information
carols10cents committed Dec 3, 2021
1 parent 47899c0 commit c64da39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ path = "src/lib.rs"
serde = { version = "1.0", features = ["rc"] }
serde_derive = "1.0"
serde_json = { version = "1.0", features = ["preserve_order"] }
indexmap = "1.6"
indexmap = { version = "1.6", features = ["std"] }
rand = { version = "0.8", optional = true }
num = "0.4"
half = "1.8"
Expand Down

0 comments on commit c64da39

Please sign in to comment.