-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (20 loc) · 785 Bytes
/
Cargo.toml
File metadata and controls
25 lines (20 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "openworkers-runtime-wasm"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
description = "WebAssembly runtime for OpenWorkers using Wasmtime"
license = "Apache-2.0"
[dependencies]
# Core types (with wasm feature for WorkerCode::WebAssembly)
# openworkers-core = { path = "../openworkers-core", features = ["wasm"] }
openworkers-core = { git = "https://github.com/openworkers/openworkers-core", tag = "v0.8.1", features = ["wasm"] }
# Wasmtime runtime with component model and WASI support
wasmtime = { version = "29", features = ["component-model"] }
wasmtime-wasi = "29"
# Async runtime
tokio = { version = "1", features = ["sync", "time", "rt"] }
# Bytes handling
bytes = "1"
[dev-dependencies]
tokio = { version = "1", features = ["full", "macros"] }