Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/proxy-wasm/proxy-wasm-rust-sdk
WebAssembly for Proxies (Rust SDK)
https://github.com/proxy-wasm/proxy-wasm-rust-sdk
envoy envoyproxy proxy wasm webassembly
Last synced: 19 days ago
JSON representation
WebAssembly for Proxies (Rust SDK)
- Host: GitHub
- URL: https://github.com/proxy-wasm/proxy-wasm-rust-sdk
- Owner: proxy-wasm
- License: apache-2.0
- Created: 2020-03-01T19:09:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-13T15:46:42.000Z (3 months ago)
- Last Synced: 2024-10-16T09:04:36.022Z (29 days ago)
- Topics: envoy, envoyproxy, proxy, wasm, webassembly
- Language: Rust
- Homepage:
- Size: 238 KB
- Stars: 480
- Watchers: 16
- Forks: 96
- Open Issues: 64
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# WebAssembly for Proxies (Rust SDK)
[![Build Status][build-badge]][build-link]
[![Crate][crate-badge]][crate-link]
[![Documentation][docs-badge]][docs-link]
[![Apache 2.0 License][license-badge]][license-link][build-badge]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/workflows/Rust/badge.svg?branch=main
[build-link]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/actions?query=workflow%3ARust+branch%3Amain
[crate-badge]: https://img.shields.io/crates/v/proxy-wasm.svg
[crate-link]: https://crates.io/crates/proxy-wasm
[docs-badge]: https://docs.rs/proxy-wasm/badge.svg
[docs-link]: https://docs.rs/proxy-wasm
[license-badge]: https://img.shields.io/github/license/proxy-wasm/proxy-wasm-rust-sdk
[license-link]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/blob/main/LICENSE## Examples
- [Hello World](./examples/hello_world/)
- [HTTP Auth (random)](./examples/http_auth_random/)
- [HTTP Headers](./examples/http_headers/)
- [HTTP Response body](./examples/http_body/)
- [HTTP Configuration](./examples/http_config/)
- [gRPC Auth (random)](./examples/grpc_auth_random/)## Articles & blog posts from the community
- [Extending Envoy with WASM and Rust](https://antweiss.com/blog/extending-envoy-with-wasm-and-rust/)
- [Writing Envoy filters in Rust with WebAssembly](https://content.red-badger.com/resources/extending-istio-with-rust-and-webassembly)## Updating dependencies
When updating dependencies, you need to regenerate Bazel `BUILD` files to match updated `Cargo.toml`:
```sh
bazel run //bazel/cargo:crates_vendor -- --repin all
```