Skip to content

Commit 455a280

Browse files
committed
chore(*) rename to proxy-wasm-filter-echo
1 parent 5886bdd commit 455a280

12 files changed

+62
-60
lines changed

BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@rules_rust//rust:rust.bzl", "rust_binary")
22

33
rust_binary(
4-
name = "proxy_wasm_filter_httpbin",
4+
name = "proxy_wasm_filter_echo",
55
srcs = glob(["src/*.rs"]),
66
crate_type = "cdylib",
77
out_binary = True,

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "httpbin"
2+
name = "proxy-wasm-filter-echo"
33
version = "0.1.0"
44
authors = ["Thibault Charbonnier <thibaultcha@me.com>"]
55
edition = "2018"

bazel/cargo/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ alias(
2323

2424
alias(
2525
name = "http",
26-
actual = "@raze__http__0_2_3//:http",
26+
actual = "@raze__http__0_2_4//:http",
2727
tags = [
2828
"cargo-raze",
2929
"manual",

bazel/cargo/Cargo.raze.lock

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -54,29 +54,15 @@ dependencies = [
5454

5555
[[package]]
5656
name = "http"
57-
version = "0.2.3"
57+
version = "0.2.4"
5858
source = "registry+https://github.com/rust-lang/crates.io-index"
59-
checksum = "7245cd7449cc792608c3c8a9eaf69bd4eabbabf802713748fd739c98b82f0747"
59+
checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
6060
dependencies = [
6161
"bytes",
6262
"fnv",
6363
"itoa",
6464
]
6565

66-
[[package]]
67-
name = "httpbin"
68-
version = "0.1.0"
69-
dependencies = [
70-
"chrono",
71-
"http",
72-
"log",
73-
"proxy-wasm",
74-
"serde",
75-
"serde-tuple-vec-map",
76-
"serde_derive",
77-
"serde_json",
78-
]
79-
8066
[[package]]
8167
name = "itoa"
8268
version = "0.4.7"
@@ -85,9 +71,9 @@ checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
8571

8672
[[package]]
8773
name = "libc"
88-
version = "0.2.92"
74+
version = "0.2.93"
8975
source = "registry+https://github.com/rust-lang/crates.io-index"
90-
checksum = "56d855069fafbb9b344c0f962150cd2c1187975cb1c22c1522c240d8c4986714"
76+
checksum = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41"
9177

9278
[[package]]
9379
name = "log"
@@ -136,6 +122,20 @@ dependencies = [
136122
"log",
137123
]
138124

125+
[[package]]
126+
name = "proxy-wasm-filter-echo"
127+
version = "0.1.0"
128+
dependencies = [
129+
"chrono",
130+
"http",
131+
"log",
132+
"proxy-wasm",
133+
"serde",
134+
"serde-tuple-vec-map",
135+
"serde_derive",
136+
"serde_json",
137+
]
138+
139139
[[package]]
140140
name = "quote"
141141
version = "1.0.9"
@@ -190,9 +190,9 @@ dependencies = [
190190

191191
[[package]]
192192
name = "syn"
193-
version = "1.0.68"
193+
version = "1.0.69"
194194
source = "registry+https://github.com/rust-lang/crates.io-index"
195-
checksum = "3ce15dd3ed8aa2f8eeac4716d6ef5ab58b6b9256db41d7e1a0224c2788e8fd87"
195+
checksum = "48fe99c6bd8b1cc636890bcc071842de909d902c81ac7dab53ba33c421ab8ffb"
196196
dependencies = [
197197
"proc-macro2",
198198
"quote",

bazel/cargo/crates.bzl

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ def raze_fetch_remote_crates():
8383

8484
maybe(
8585
http_archive,
86-
name = "raze__http__0_2_3",
87-
url = "https://crates.io/api/v1/crates/http/0.2.3/download",
86+
name = "raze__http__0_2_4",
87+
url = "https://crates.io/api/v1/crates/http/0.2.4/download",
8888
type = "tar.gz",
89-
sha256 = "7245cd7449cc792608c3c8a9eaf69bd4eabbabf802713748fd739c98b82f0747",
90-
strip_prefix = "http-0.2.3",
91-
build_file = Label("//bazel/cargo/remote:BUILD.http-0.2.3.bazel"),
89+
sha256 = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11",
90+
strip_prefix = "http-0.2.4",
91+
build_file = Label("//bazel/cargo/remote:BUILD.http-0.2.4.bazel"),
9292
)
9393

9494
maybe(
@@ -103,12 +103,12 @@ def raze_fetch_remote_crates():
103103

104104
maybe(
105105
http_archive,
106-
name = "raze__libc__0_2_92",
107-
url = "https://crates.io/api/v1/crates/libc/0.2.92/download",
106+
name = "raze__libc__0_2_93",
107+
url = "https://crates.io/api/v1/crates/libc/0.2.93/download",
108108
type = "tar.gz",
109-
sha256 = "56d855069fafbb9b344c0f962150cd2c1187975cb1c22c1522c240d8c4986714",
110-
strip_prefix = "libc-0.2.92",
111-
build_file = Label("//bazel/cargo/remote:BUILD.libc-0.2.92.bazel"),
109+
sha256 = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41",
110+
strip_prefix = "libc-0.2.93",
111+
build_file = Label("//bazel/cargo/remote:BUILD.libc-0.2.93.bazel"),
112112
)
113113

114114
maybe(
@@ -223,12 +223,12 @@ def raze_fetch_remote_crates():
223223

224224
maybe(
225225
http_archive,
226-
name = "raze__syn__1_0_68",
227-
url = "https://crates.io/api/v1/crates/syn/1.0.68/download",
226+
name = "raze__syn__1_0_69",
227+
url = "https://crates.io/api/v1/crates/syn/1.0.69/download",
228228
type = "tar.gz",
229-
sha256 = "3ce15dd3ed8aa2f8eeac4716d6ef5ab58b6b9256db41d7e1a0224c2788e8fd87",
230-
strip_prefix = "syn-1.0.68",
231-
build_file = Label("//bazel/cargo/remote:BUILD.syn-1.0.68.bazel"),
229+
sha256 = "48fe99c6bd8b1cc636890bcc071842de909d902c81ac7dab53ba33c421ab8ffb",
230+
strip_prefix = "syn-1.0.69",
231+
build_file = Label("//bazel/cargo/remote:BUILD.syn-1.0.69.bazel"),
232232
)
233233

234234
maybe(

bazel/cargo/remote/BUILD.chrono-0.4.19.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ rust_library(
6262
version = "0.4.19",
6363
# buildifier: leave-alone
6464
deps = [
65-
"@raze__libc__0_2_92//:libc",
65+
"@raze__libc__0_2_93//:libc",
6666
"@raze__num_integer__0_1_44//:num_integer",
6767
"@raze__num_traits__0_2_14//:num_traits",
6868
"@raze__time__0_1_44//:time",

bazel/cargo/remote/BUILD.http-0.2.3.bazel renamed to bazel/cargo/remote/BUILD.http-0.2.4.bazel

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ licenses([
3636

3737
# Unsupported target "header_value" with type "bench" omitted
3838

39+
# Unsupported target "method" with type "bench" omitted
40+
3941
# Unsupported target "uri" with type "bench" omitted
4042

4143
rust_library(
@@ -54,7 +56,7 @@ rust_library(
5456
"cargo-raze",
5557
"manual",
5658
],
57-
version = "0.2.3",
59+
version = "0.2.4",
5860
# buildifier: leave-alone
5961
deps = [
6062
"@raze__bytes__1_0_1//:bytes",

bazel/cargo/remote/BUILD.libc-0.2.92.bazel renamed to bazel/cargo/remote/BUILD.libc-0.2.93.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ cargo_build_script(
5555
"cargo-raze",
5656
"manual",
5757
],
58-
version = "0.2.92",
58+
version = "0.2.93",
5959
visibility = ["//visibility:private"],
6060
deps = [
6161
],
@@ -79,7 +79,7 @@ rust_library(
7979
"cargo-raze",
8080
"manual",
8181
],
82-
version = "0.2.92",
82+
version = "0.2.93",
8383
# buildifier: leave-alone
8484
deps = [
8585
":libc_build_script",

bazel/cargo/remote/BUILD.serde_derive-1.0.125.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,6 @@ rust_library(
8181
":serde_derive_build_script",
8282
"@raze__proc_macro2__1_0_26//:proc_macro2",
8383
"@raze__quote__1_0_9//:quote",
84-
"@raze__syn__1_0_68//:syn",
84+
"@raze__syn__1_0_69//:syn",
8585
],
8686
)

0 commit comments

Comments
 (0)