Skip to content

Commit

Permalink
Fix funty dependency to fix build failure in bitvec
Browse files Browse the repository at this point in the history
Build fails due to a breaking change in funty (ferrilab/funty@b87325b),
which ads a BITS constant that bitvec is glob importing.
Version 1.1.0 of funty works fine, so as a temporary workaround, add
funty = "=1.1.0" to the Cargo.toml
See ferrilab/bitvec#105
  • Loading branch information
chifflier committed Feb 14, 2021
1 parent dd3ceba commit bacf313
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libpcap-analyzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ base64 = { version="0.13", optional=true }
crossbeam-channel = "0.5"
fasthash = "0.4"
fnv = "1.0"
# fix funty dependency to fix build failure in bitvec
# (see https://github.com/bitvecto-rs/bitvec/issues/105)
funty = "=1.1.0"
indexmap = { version="1.1", features=["serde-1"] }
lazy_static = "1.2"
libpcap-tools = { path="../libpcap-tools" }
Expand Down

0 comments on commit bacf313

Please sign in to comment.