2 stable releases
2.0.0 | Jun 28, 2024 |
---|---|
1.0.0 | Jun 25, 2024 |
#1102 in HTTP server
34 downloads per month
17KB
247 lines
worker-bindings
Automatically bind bindings in your `wrangler.toml` into a Rust struct
Example
wrangler.toml
[vars]
MY_VAR = "my-variable"
[[kv_namespaces]]
binding = "MY_KV"
id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
lib.rs
use worker::*;
use worker_bindings::bindings;
/* This knows all your bindings in wrangler.toml */
#[bindings]
struct Bindings;
#[event(fetch)]
pub async fn main(req: Request, env: Env, _ctx: worker::Context) -> Result<Response> {
/* load bindings from env */
let b = Bindings::from(&env);
let var: &'static str = b.MY_VAR;
let data = b.MY_KV.get("data").text().await?;
//...
}
Note
#[bindings]
works in a cargo workspace but has a limitation that it fails to resolvewrangler.toml
if more than one members havewrangler.toml
s.- This crate is originally developed in Ohkami web framework and later extracted as an independent edition.
License
worker-bindings
is licensed under the MIT License (LICENSE or https://opensource.org/licenses/MIT).
Dependencies
~4MB
~83K SLoC