proxy-wasm 0.1.1

WebAssembly for Proxies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
load("@io_bazel_rules_rust//rust:rust.bzl", "rust_library")

rust_library(
    name = "proxy_wasm",
    srcs = glob(["src/*.rs"]),
    edition = "2018",
    visibility = ["//visibility:public"],
    deps = [
        "//cargo:hashbrown",
        "//cargo:log",
        "//cargo:wee_alloc",
    ],
)