mirror of
https://github.com/cloudflare/workers-rs.git
synced 2025-12-08 18:01:59 +00:00
* Prototyping * rpc client example * Prototype WIT codegen * Documentation * Final tweaks
20 lines
377 B
TOML
20 lines
377 B
TOML
[package]
|
|
name = "rust-rpc-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[package.metadata.release]
|
|
release = false
|
|
|
|
# https://github.com/rustwasm/wasm-pack/issues/1247
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
worker = { path="../../worker" }
|
|
wasm-bindgen="0.2"
|
|
console_error_panic_hook = { version = "0.1.1" }
|