forked from bytecodealliance/wasmtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 732 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (21 loc) · 732 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 = "wasmtime-wasi-keyvalue"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
repository = "https://github.com/bytecodealliance/wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
description = "Wasmtime implementation of the wasi-keyvalue API"
[lints]
workspace = true
[features]
redb = ["dep:redb", "dep:anyhow"]
[dependencies]
wasmtime = { workspace = true, features = ["runtime", "component-model", "std"] }
redb = { version = "4.1", optional = true }
anyhow = { workspace = true, optional = true }
[dev-dependencies]
test-programs-artifacts = { workspace = true }
wasmtime-wasi = { workspace = true }
tokio = { workspace = true, features = ["macros"] }