-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 758 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 758 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
26
27
28
29
[package]
name = "tiny-wasm-runtime"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3.30"
dashmap = "6.1.0"
lazy_static = "1.5.0"
wit-bindgen-rt = { version = "0.30.0", features = ["bitflags"] }
autoincrement = { version = "1", features = ["derive", "async"] }
pin-project-lite = "0.2.16"
crossbeam = "0.8.4"
[dependencies.uuid]
version = "1.17.0"
# Lets you generate random UUIDs
features = [
"v4",
]
[package.metadata.component]
package = "component:wasm-runtime"
[package.metadata.component.target.dependencies]
"wasi:io" = {path = "wit/deps/io"}
"wasi:clocks" = {path = "wit/deps/clocks"}
"wasi:sockets" = {path = "wit/deps/sockets"}