@@ -5,14 +5,14 @@ load("@third-party//:vendor.bzl", "vendored")
5
5
def third_party_glob (include ):
6
6
return vendored and native .glob (include )
7
7
8
- def third_party_cargo_build_script (edition , rustc_flags = [], ** kwargs ):
8
+ def third_party_cargo_build_script (rustc_flags = [], ** kwargs ):
9
9
rustc_flags = rustc_flags + ["--cap-lints=allow" ]
10
- cargo_build_script (edition = edition , rustc_flags = rustc_flags , ** kwargs )
10
+ cargo_build_script (rustc_flags = rustc_flags , ** kwargs )
11
11
12
- def third_party_rust_binary (edition , rustc_flags = [], ** kwargs ):
12
+ def third_party_rust_binary (rustc_flags = [], ** kwargs ):
13
13
rustc_flags = rustc_flags + ["--cap-lints=allow" ]
14
- rust_binary (edition = edition , rustc_flags = rustc_flags , ** kwargs )
14
+ rust_binary (rustc_flags = rustc_flags , ** kwargs )
15
15
16
- def third_party_rust_library (edition , rustc_flags = [], ** kwargs ):
16
+ def third_party_rust_library (rustc_flags = [], ** kwargs ):
17
17
rustc_flags = rustc_flags + ["--cap-lints=allow" ]
18
- rust_library (edition = edition , rustc_flags = rustc_flags , ** kwargs )
18
+ rust_library (rustc_flags = rustc_flags , ** kwargs )
0 commit comments