Skip to content

Commit

Permalink
feat(web-keyvalue): wire up wRPC invocations to buttons
Browse files Browse the repository at this point in the history
Signed-off-by: Roman Volosatovs <[email protected]>
  • Loading branch information
rvolosatovs committed Nov 5, 2024
1 parent 1051f71 commit 59bc861
Show file tree
Hide file tree
Showing 4 changed files with 373 additions and 159 deletions.
5 changes: 5 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions examples/web/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ repository.workspace = true
[dependencies]
anyhow = { workspace = true }
axum = { workspace = true, features = ["tokio", "http1", "http2"] }
bytes = { workspace = true }
clap = { workspace = true, features = [
"color",
"derive",
Expand All @@ -30,16 +31,20 @@ tokio = { workspace = true, features = [
] }
tower = { workspace = true }
tower-http = { workspace = true, features = ["fs", "trace"] }
tracing = { workspace = true }
tracing = { workspace = true, features = ["attributes"] }
tracing-subscriber = { workspace = true, features = [
"ansi",
"env-filter",
"fmt",
"smallvec",
"tracing-log",
] }
url = { workspace = true }
uuid = { workspace = true, features = ["std", "v7"] }
wit-bindgen-wrpc = { workspace = true }
wrpc-transport = { workspace = true }
wrpc-transport = { workspace = true, features = ["net"] }
wrpc-transport-nats = { workspace = true, features = ["async-nats-0_37"] }
wrpc-transport-quic = { workspace = true }
wrpc-transport-web = { workspace = true }
wrpc-wasi-keyvalue = { workspace = true }
wrpc-wasi-keyvalue-mem = { workspace = true }
Expand Down
Loading

0 comments on commit 59bc861

Please sign in to comment.