Skip to content

Commit 2a32d25

Browse files
committed
Add back env_logger
Signed-off-by: Keith Mattix II <[email protected]>
1 parent e5e77c8 commit 2a32d25

12 files changed

+592
-1
lines changed

bazel/cargo/wasmtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rust-version = "1.78.0"
88
path = "fake_lib.rs"
99

1010
[dependencies]
11-
env_logger = {version = "0.10", optional = true }
11+
env_logger = "0.10"
1212
anyhow = "1.0"
1313
once_cell = "1.12"
1414
log = {version = "0.4.8", default-features = false}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
###############################################################################
2+
# @generated
3+
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4+
# regenerate this file, run the following:
5+
#
6+
# bazel run @//bazel/cargo/wasmtime:crates_vendor
7+
###############################################################################
8+
9+
load("@rules_rust//rust:defs.bzl", "rust_library")
10+
11+
package(default_visibility = ["//visibility:public"])
12+
13+
rust_library(
14+
name = "aho_corasick",
15+
srcs = glob(
16+
include = ["**/*.rs"],
17+
allow_empty = False,
18+
),
19+
compile_data = glob(
20+
include = ["**"],
21+
allow_empty = True,
22+
exclude = [
23+
"**/* *",
24+
".tmp_git_root/**/*",
25+
"BUILD",
26+
"BUILD.bazel",
27+
"WORKSPACE",
28+
"WORKSPACE.bazel",
29+
],
30+
),
31+
crate_features = [
32+
"perf-literal",
33+
"std",
34+
],
35+
crate_root = "src/lib.rs",
36+
edition = "2021",
37+
rustc_flags = [
38+
"--cap-lints=allow",
39+
],
40+
tags = [
41+
"cargo-bazel",
42+
"crate-name=aho-corasick",
43+
"manual",
44+
"noclippy",
45+
"norustfmt",
46+
],
47+
version = "1.1.3",
48+
deps = [
49+
"@cu__memchr-2.7.4//:memchr",
50+
],
51+
)

bazel/cargo/wasmtime/remote/BUILD.bazel

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ alias(
3737
tags = ["manual"],
3838
)
3939

40+
alias(
41+
name = "env_logger",
42+
actual = "@cu__env_logger-0.10.2//:env_logger",
43+
tags = ["manual"],
44+
)
45+
4046
alias(
4147
name = "log",
4248
actual = "@cu__log-0.4.22//:log",
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
###############################################################################
2+
# @generated
3+
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4+
# regenerate this file, run the following:
5+
#
6+
# bazel run @//bazel/cargo/wasmtime:crates_vendor
7+
###############################################################################
8+
9+
load("@rules_rust//rust:defs.bzl", "rust_library")
10+
11+
package(default_visibility = ["//visibility:public"])
12+
13+
rust_library(
14+
name = "env_logger",
15+
srcs = glob(
16+
include = ["**/*.rs"],
17+
allow_empty = False,
18+
),
19+
compile_data = glob(
20+
include = ["**"],
21+
allow_empty = True,
22+
exclude = [
23+
"**/* *",
24+
".tmp_git_root/**/*",
25+
"BUILD",
26+
"BUILD.bazel",
27+
"WORKSPACE",
28+
"WORKSPACE.bazel",
29+
],
30+
),
31+
crate_features = [
32+
"auto-color",
33+
"color",
34+
"default",
35+
"humantime",
36+
"regex",
37+
],
38+
crate_root = "src/lib.rs",
39+
edition = "2021",
40+
rustc_flags = [
41+
"--cap-lints=allow",
42+
],
43+
tags = [
44+
"cargo-bazel",
45+
"crate-name=env_logger",
46+
"manual",
47+
"noclippy",
48+
"norustfmt",
49+
],
50+
version = "0.10.2",
51+
deps = [
52+
"@cu__humantime-2.1.0//:humantime",
53+
"@cu__is-terminal-0.4.12//:is_terminal",
54+
"@cu__log-0.4.22//:log",
55+
"@cu__regex-1.10.5//:regex",
56+
"@cu__termcolor-1.4.1//:termcolor",
57+
],
58+
)
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
###############################################################################
2+
# @generated
3+
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4+
# regenerate this file, run the following:
5+
#
6+
# bazel run @//bazel/cargo/wasmtime:crates_vendor
7+
###############################################################################
8+
9+
load("@rules_rust//rust:defs.bzl", "rust_library")
10+
11+
package(default_visibility = ["//visibility:public"])
12+
13+
rust_library(
14+
name = "hermit_abi",
15+
srcs = glob(
16+
include = ["**/*.rs"],
17+
allow_empty = False,
18+
),
19+
compile_data = glob(
20+
include = ["**"],
21+
allow_empty = True,
22+
exclude = [
23+
"**/* *",
24+
".tmp_git_root/**/*",
25+
"BUILD",
26+
"BUILD.bazel",
27+
"WORKSPACE",
28+
"WORKSPACE.bazel",
29+
],
30+
),
31+
crate_root = "src/lib.rs",
32+
edition = "2021",
33+
rustc_flags = [
34+
"--cap-lints=allow",
35+
],
36+
tags = [
37+
"cargo-bazel",
38+
"crate-name=hermit-abi",
39+
"manual",
40+
"noclippy",
41+
"norustfmt",
42+
],
43+
version = "0.3.9",
44+
)
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
###############################################################################
2+
# @generated
3+
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4+
# regenerate this file, run the following:
5+
#
6+
# bazel run @//bazel/cargo/wasmtime:crates_vendor
7+
###############################################################################
8+
9+
load("@rules_rust//rust:defs.bzl", "rust_library")
10+
11+
package(default_visibility = ["//visibility:public"])
12+
13+
rust_library(
14+
name = "humantime",
15+
srcs = glob(
16+
include = ["**/*.rs"],
17+
allow_empty = False,
18+
),
19+
compile_data = glob(
20+
include = ["**"],
21+
allow_empty = True,
22+
exclude = [
23+
"**/* *",
24+
".tmp_git_root/**/*",
25+
"BUILD",
26+
"BUILD.bazel",
27+
"WORKSPACE",
28+
"WORKSPACE.bazel",
29+
],
30+
),
31+
crate_root = "src/lib.rs",
32+
edition = "2018",
33+
rustc_flags = [
34+
"--cap-lints=allow",
35+
],
36+
tags = [
37+
"cargo-bazel",
38+
"crate-name=humantime",
39+
"manual",
40+
"noclippy",
41+
"norustfmt",
42+
],
43+
version = "2.1.0",
44+
)
Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
###############################################################################
2+
# @generated
3+
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4+
# regenerate this file, run the following:
5+
#
6+
# bazel run @//bazel/cargo/wasmtime:crates_vendor
7+
###############################################################################
8+
9+
load("@rules_rust//rust:defs.bzl", "rust_library")
10+
11+
package(default_visibility = ["//visibility:public"])
12+
13+
rust_library(
14+
name = "is_terminal",
15+
srcs = glob(
16+
include = ["**/*.rs"],
17+
allow_empty = False,
18+
),
19+
compile_data = glob(
20+
include = ["**"],
21+
allow_empty = True,
22+
exclude = [
23+
"**/* *",
24+
".tmp_git_root/**/*",
25+
"BUILD",
26+
"BUILD.bazel",
27+
"WORKSPACE",
28+
"WORKSPACE.bazel",
29+
],
30+
),
31+
crate_root = "src/lib.rs",
32+
edition = "2018",
33+
rustc_flags = [
34+
"--cap-lints=allow",
35+
],
36+
tags = [
37+
"cargo-bazel",
38+
"crate-name=is-terminal",
39+
"manual",
40+
"noclippy",
41+
"norustfmt",
42+
],
43+
version = "0.4.12",
44+
deps = select({
45+
"@rules_rust//rust/platform:aarch64-apple-darwin": [
46+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
47+
],
48+
"@rules_rust//rust/platform:aarch64-apple-ios": [
49+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
50+
],
51+
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
52+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
53+
],
54+
"@rules_rust//rust/platform:aarch64-fuchsia": [
55+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
56+
],
57+
"@rules_rust//rust/platform:aarch64-linux-android": [
58+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
59+
],
60+
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
61+
"@cu__windows-sys-0.52.0//:windows_sys", # cfg(windows)
62+
],
63+
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
64+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
65+
],
66+
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
67+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
68+
],
69+
"@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [
70+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
71+
],
72+
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
73+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
74+
],
75+
"@rules_rust//rust/platform:armv7-linux-androideabi": [
76+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
77+
],
78+
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
79+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
80+
],
81+
"@rules_rust//rust/platform:i686-apple-darwin": [
82+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
83+
],
84+
"@rules_rust//rust/platform:i686-linux-android": [
85+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
86+
],
87+
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
88+
"@cu__windows-sys-0.52.0//:windows_sys", # cfg(windows)
89+
],
90+
"@rules_rust//rust/platform:i686-unknown-freebsd": [
91+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
92+
],
93+
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
94+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
95+
],
96+
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
97+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
98+
],
99+
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
100+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
101+
],
102+
"@rules_rust//rust/platform:wasm32-wasi": [
103+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
104+
],
105+
"@rules_rust//rust/platform:x86_64-apple-darwin": [
106+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
107+
],
108+
"@rules_rust//rust/platform:x86_64-apple-ios": [
109+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
110+
],
111+
"@rules_rust//rust/platform:x86_64-fuchsia": [
112+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
113+
],
114+
"@rules_rust//rust/platform:x86_64-linux-android": [
115+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
116+
],
117+
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
118+
"@cu__windows-sys-0.52.0//:windows_sys", # cfg(windows)
119+
],
120+
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
121+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
122+
],
123+
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
124+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
125+
],
126+
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
127+
"@cu__libc-0.2.155//:libc", # cfg(any(unix, target_os = "wasi"))
128+
],
129+
"//conditions:default": [],
130+
}),
131+
)

bazel/cargo/wasmtime/remote/BUILD.log-0.4.22.bazel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ rust_library(
2828
"WORKSPACE.bazel",
2929
],
3030
),
31+
crate_features = [
32+
"std",
33+
],
3134
crate_root = "src/lib.rs",
3235
edition = "2021",
3336
rustc_flags = [

0 commit comments

Comments
 (0)