Skip to content

Commit

Permalink
relax the semver requirement for ironoxide (#193)
Browse files Browse the repository at this point in the history
This will allow downstream consumers to choose their version of protobuf without causing build issues.
  • Loading branch information
clintfred committed Oct 29, 2020
1 parent bcf8be9 commit 69b5c7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ lazy_static = "~1.4"
chrono = { version = "~0.4", features = ["serde"] }
percent-encoding="~2.1"
log = "~0.4"
protobuf = { version = "~2.17", features = ["with-bytes"] }
protobuf = { version = "^2.0", features = ["with-bytes"] }
vec1 = "~1.6.0"
# ironoxide requires rt-threaded at runtime, but not at compile time
tokio = { version = "~0.2.0", features = ["time", "rt-threaded"] }
Expand All @@ -53,7 +53,7 @@ mut_static = "~5.0"
anyhow = "~1.0.31"

[build-dependencies]
protobuf-codegen-pure = "~2.17"
protobuf-codegen-pure = "^2.0"
itertools = "~0.9.0"

[package.metadata.docs.rs]
Expand Down

0 comments on commit 69b5c7c

Please sign in to comment.