Skip to content

Commit

Permalink
chore: fix itertools features to allow no (#781)
Browse files Browse the repository at this point in the history
  • Loading branch information
n-prat committed Dec 13, 2022
1 parent 5109f79 commit a7aac76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion prost-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cleanup-markdown = ["pulldown-cmark", "pulldown-cmark-to-cmark"]
[dependencies]
bytes = { version = "1", default-features = false }
heck = "0.4"
itertools = "0.10"
itertools = { version = "0.10", default-features = false, features = ["use_alloc"] }
log = "0.4"
multimap = { version = "0.8", default-features = false }
petgraph = { version = "0.6", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion prost-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ proc_macro = true

[dependencies]
anyhow = "1.0.1"
itertools = "0.10"
itertools = { version = "0.10", default-features = false, features = ["use_alloc"] }
proc-macro2 = "1"
quote = "1"
syn = { version = "1.0.3", features = [ "extra-traits" ] }

0 comments on commit a7aac76

Please sign in to comment.