Skip to content

Commit

Permalink
Fix compilation on rust 1.23
Browse files Browse the repository at this point in the history
This fixes test compilation, other crates work fine
  • Loading branch information
stepancheg committed Nov 17, 2018
1 parent 201c6b0 commit c2b173b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions protobuf-test-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
bytes = { version = "0.4", optional = true }
# lazy_static 2.1 is not compatible with rust 1.23.0
# and lazy_static is needed for some crate, I don't know which exactly
lazy_static = "1.1.*"

[dependencies.protobuf]
path = "../protobuf"
Expand Down

0 comments on commit c2b173b

Please sign in to comment.