forked from proxy-wasm/proxy-wasm-cpp-host
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.wasmsign-0.1.2.bazel
86 lines (82 loc) · 2.21 KB
/
BUILD.wasmsign-0.1.2.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run @//bazel/cargo/wasmsign:crates_vendor
###############################################################################
load(
"@rules_rust//rust:defs.bzl",
"rust_binary",
"rust_library",
)
package(default_visibility = ["//visibility:public"])
rust_library(
name = "wasmsign",
srcs = glob(["**/*.rs"]),
compile_data = glob(
include = ["**"],
exclude = [
"**/* *",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_root = "src/lib.rs",
edition = "2018",
rustc_flags = ["--cap-lints=allow"],
tags = [
"cargo-bazel",
"crate-name=wasmsign",
"manual",
"noclippy",
"norustfmt",
],
version = "0.1.2",
deps = [
"@cu__anyhow-1.0.86//:anyhow",
"@cu__byteorder-1.5.0//:byteorder",
"@cu__clap-2.34.0//:clap",
"@cu__ed25519-compact-1.0.16//:ed25519_compact",
"@cu__hmac-sha512-1.1.5//:hmac_sha512",
"@cu__parity-wasm-0.42.2//:parity_wasm",
"@cu__thiserror-1.0.63//:thiserror",
],
)
rust_binary(
name = "wasmsign__bin",
srcs = glob(["**/*.rs"]),
compile_data = glob(
include = ["**"],
exclude = [
"**/* *",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_root = "src/bin/wasmsign.rs",
edition = "2018",
rustc_flags = ["--cap-lints=allow"],
tags = [
"cargo-bazel",
"crate-name=wasmsign",
"manual",
"noclippy",
"norustfmt",
],
version = "0.1.2",
deps = [
":wasmsign",
"@cu__anyhow-1.0.86//:anyhow",
"@cu__byteorder-1.5.0//:byteorder",
"@cu__clap-2.34.0//:clap",
"@cu__ed25519-compact-1.0.16//:ed25519_compact",
"@cu__hmac-sha512-1.1.5//:hmac_sha512",
"@cu__parity-wasm-0.42.2//:parity_wasm",
"@cu__thiserror-1.0.63//:thiserror",
],
)