Skip to content

Commit

Permalink
Add tonic as a crate in cargo-raze (#891)
Browse files Browse the repository at this point in the history
This change:
- Adds `tonic` as a dependency using `cargo-raze`
- Updates `bazel_rules_rust`

Fixes #890
  • Loading branch information
ipetr0v authored Apr 27, 2020
1 parent 71e1560 commit b20175f
Show file tree
Hide file tree
Showing 66 changed files with 3,729 additions and 60 deletions.
12 changes: 7 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -239,11 +239,11 @@ http_archive(

http_archive(
name = "io_bazel_rules_rust",
sha256 = "69b67e19532b12da3edccda404772e85a788d16ae739343f5338dd340a0fba2e",
strip_prefix = "rules_rust-ec436b5ff2ab1ddeba6f27a7a1a5d263812981a6",
sha256 = "275f0166e61e6cad3e29b0e37c21ecbb66880c049dbeea6e574d74a8ec4775c5",
strip_prefix = "rules_rust-e285f2bd8be77712e6b80ccb52918b727d10d70e",
urls = [
# Master branch as of 2019-11-15.
"https://github.com/bazelbuild/rules_rust/archive/ec436b5ff2ab1ddeba6f27a7a1a5d263812981a6.tar.gz",
# Master branch as of 2020-04-21.
"https://github.com/bazelbuild/rules_rust/archive/e285f2bd8be77712e6b80ccb52918b727d10d70e.tar.gz",
],
)

Expand Down
10 changes: 9 additions & 1 deletion cargo/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ alias(
name = "byteorder",
actual = "@raze__byteorder__1_3_4//:byteorder",
)
alias(
name = "bytes",
actual = "@raze__bytes__0_5_4//:bytes",
)
alias(
name = "http",
actual = "@raze__http__0_2_1//:http",
Expand Down Expand Up @@ -58,7 +62,11 @@ alias(
)
alias(
name = "tokio",
actual = "@raze__tokio__0_2_18//:tokio",
actual = "@raze__tokio__0_2_19//:tokio",
)
alias(
name = "tonic",
actual = "@raze__tonic__0_1_1//:tonic",
)
alias(
name = "wasmi",
Expand Down
Loading

0 comments on commit b20175f

Please sign in to comment.