File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,23 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4
4
5
5
http_archive (
6
6
name = "rules_rust" ,
7
- sha256 = "3cf493f845837b9c0c44311992a8e387b508a267cb8f261ef97b94c915f292cc " ,
8
- strip_prefix = "rules_rust-55790492aca01b389d208cd1335b9d8c05e28329 " ,
7
+ sha256 = "29954bced3e0d1a57ff8db816f5cd8a5856179fc657455729f1eb53b39611419 " ,
8
+ strip_prefix = "rules_rust-6e1cbbfcd0d140baacc8ff1080f885d2a45296a9 " ,
9
9
urls = [
10
- # Main branch as of 2022-04-10
11
- "https://github.com/bazelbuild/rules_rust/archive/55790492aca01b389d208cd1335b9d8c05e28329.tar.gz" ,
10
+ # PR https://github.com/bazelbuild/rules_rust/pull/1254
11
+ # on top of the main branch as of 2022-04-10
12
+ "https://github.com/bazelbuild/rules_rust/archive/6e1cbbfcd0d140baacc8ff1080f885d2a45296a9.tar.gz" ,
12
13
],
13
14
)
14
15
15
16
load ("@rules_rust//rust:repositories.bzl" , "rust_repositories" )
16
17
17
18
RUST_VERSION = "1.60.0"
18
19
19
- rust_repositories (version = RUST_VERSION )
20
+ rust_repositories (
21
+ edition = "required" ,
22
+ version = RUST_VERSION ,
23
+ )
20
24
21
25
load ("//tools/bazel:vendor.bzl" , "vendor" )
22
26
You can’t perform that action at this time.
0 commit comments