Skip to content

Commit

Permalink
Use Git dep for Prost (#258)
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Cameron <[email protected]>
  • Loading branch information
nrc authored and Hoverbear committed Jul 10, 2019
1 parent a7e957f commit 07cde2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ failpoint = ["fail"]
[dependencies]
log = ">0.2"
lazy_static = "1.3.0"
prost = "0.5"
prost-derive = "0.5"
prost = { git = "https://github.com/danburkert/prost", rev = "1944c27c3029d01ff216e7b126d846b6cf8c7d77" }
prost-derive = { git = "https://github.com/danburkert/prost", rev = "1944c27c3029d01ff216e7b126d846b6cf8c7d77" }
bytes = "0.4.11"
quick-error = "1.2.2"
rand = "0.5.4"
Expand Down
6 changes: 3 additions & 3 deletions proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "raft-proto"
version = "0.4.2"
version = "0.4.3"
authors = ["The TiKV Project Developers"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -22,5 +22,5 @@ protobuf-build = "0.6"
[dependencies]
bytes = "0.4.11"
lazy_static = "1.3.0"
prost = "0.5"
prost-derive = "0.5"
prost = { git = "https://github.com/danburkert/prost", rev = "1944c27c3029d01ff216e7b126d846b6cf8c7d77" }
prost-derive = { git = "https://github.com/danburkert/prost", rev = "1944c27c3029d01ff216e7b126d846b6cf8c7d77" }

0 comments on commit 07cde2d

Please sign in to comment.