-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[rust] update rust dependencies (#2989)
- Loading branch information
Showing
70 changed files
with
3,964 additions
and
161 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
############################################################################### | ||
# @generated | ||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To | ||
# regenerate this file, run the following: | ||
# | ||
# bazel run @//deps/rust:crates_vendor | ||
############################################################################### | ||
|
||
load( | ||
"@rules_rust//rust:defs.bzl", | ||
"rust_binary", | ||
"rust_library", | ||
) | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
rust_library( | ||
name = "addr2line", | ||
srcs = glob( | ||
include = ["**/*.rs"], | ||
allow_empty = True, | ||
), | ||
compile_data = glob( | ||
include = ["**"], | ||
allow_empty = True, | ||
exclude = [ | ||
"**/* *", | ||
".tmp_git_root/**/*", | ||
"BUILD", | ||
"BUILD.bazel", | ||
"WORKSPACE", | ||
"WORKSPACE.bazel", | ||
], | ||
), | ||
crate_root = "src/lib.rs", | ||
edition = "2018", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-bazel", | ||
"crate-name=addr2line", | ||
"manual", | ||
"noclippy", | ||
"norustfmt", | ||
], | ||
version = "0.24.2", | ||
deps = [ | ||
"@crates_vendor__gimli-0.31.1//:gimli", | ||
], | ||
) | ||
|
||
rust_binary( | ||
name = "addr2line__bin", | ||
srcs = glob( | ||
include = ["**/*.rs"], | ||
allow_empty = True, | ||
), | ||
compile_data = glob( | ||
include = ["**"], | ||
allow_empty = True, | ||
exclude = [ | ||
"**/* *", | ||
".tmp_git_root/**/*", | ||
"BUILD", | ||
"BUILD.bazel", | ||
"WORKSPACE", | ||
"WORKSPACE.bazel", | ||
], | ||
), | ||
crate_root = "src/bin/addr2line.rs", | ||
edition = "2018", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-bazel", | ||
"crate-name=addr2line", | ||
"manual", | ||
"noclippy", | ||
"norustfmt", | ||
], | ||
version = "0.24.2", | ||
deps = [ | ||
":addr2line", | ||
"@crates_vendor__gimli-0.31.1//:gimli", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
############################################################################### | ||
# @generated | ||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To | ||
# regenerate this file, run the following: | ||
# | ||
# bazel run @//deps/rust:crates_vendor | ||
############################################################################### | ||
|
||
load("@rules_rust//rust:defs.bzl", "rust_library") | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
rust_library( | ||
name = "anstyle", | ||
srcs = glob( | ||
include = ["**/*.rs"], | ||
allow_empty = True, | ||
), | ||
compile_data = glob( | ||
include = ["**"], | ||
allow_empty = True, | ||
exclude = [ | ||
"**/* *", | ||
".tmp_git_root/**/*", | ||
"BUILD", | ||
"BUILD.bazel", | ||
"WORKSPACE", | ||
"WORKSPACE.bazel", | ||
], | ||
), | ||
crate_features = [ | ||
"default", | ||
"std", | ||
], | ||
crate_root = "src/lib.rs", | ||
edition = "2021", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-bazel", | ||
"crate-name=anstyle", | ||
"manual", | ||
"noclippy", | ||
"norustfmt", | ||
], | ||
version = "1.0.8", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
############################################################################### | ||
# @generated | ||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To | ||
# regenerate this file, run the following: | ||
# | ||
# bazel run @//deps/rust:crates_vendor | ||
############################################################################### | ||
|
||
load("@rules_rust//rust:defs.bzl", "rust_library") | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
rust_library( | ||
name = "backtrace", | ||
srcs = glob( | ||
include = ["**/*.rs"], | ||
allow_empty = True, | ||
), | ||
compile_data = glob( | ||
include = ["**"], | ||
allow_empty = True, | ||
exclude = [ | ||
"**/* *", | ||
".tmp_git_root/**/*", | ||
"BUILD", | ||
"BUILD.bazel", | ||
"WORKSPACE", | ||
"WORKSPACE.bazel", | ||
], | ||
), | ||
crate_root = "src/lib.rs", | ||
edition = "2021", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-bazel", | ||
"crate-name=backtrace", | ||
"manual", | ||
"noclippy", | ||
"norustfmt", | ||
], | ||
version = "0.3.74", | ||
deps = [ | ||
"@crates_vendor__cfg-if-1.0.0//:cfg_if", | ||
"@crates_vendor__rustc-demangle-0.1.24//:rustc_demangle", | ||
] + select({ | ||
"@rules_rust//rust/platform:aarch64-apple-darwin": [ | ||
"@crates_vendor__addr2line-0.24.2//:addr2line", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__libc-0.2.161//:libc", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__miniz_oxide-0.8.0//:miniz_oxide", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__object-0.36.5//:object", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
], | ||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ | ||
"@crates_vendor__addr2line-0.24.2//:addr2line", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__libc-0.2.161//:libc", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__miniz_oxide-0.8.0//:miniz_oxide", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__object-0.36.5//:object", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
], | ||
"@rules_rust//rust/platform:x86_64-apple-darwin": [ | ||
"@crates_vendor__addr2line-0.24.2//:addr2line", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__libc-0.2.161//:libc", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__miniz_oxide-0.8.0//:miniz_oxide", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__object-0.36.5//:object", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
], | ||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ | ||
"@crates_vendor__windows-targets-0.52.6//:windows_targets", # cfg(windows) | ||
], | ||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ | ||
"@crates_vendor__addr2line-0.24.2//:addr2line", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__libc-0.2.161//:libc", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__miniz_oxide-0.8.0//:miniz_oxide", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
"@crates_vendor__object-0.36.5//:object", # cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))) | ||
], | ||
"//conditions:default": [], | ||
}), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.