-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (56 loc) · 1.73 KB
/
Cargo.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "vfs"
version = "0.1.1"
edition = "2021"
description = "WASI virtual filesystem tooling"
authors = ["The Enarx Project Developers"]
homepage = "https://enarx.dev/"
repository = "https://github.com/enarx/vfs"
license = "Apache-2.0"
keywords = ["vfs"]
categories = ["filesystem"]
exclude = [".github/", "tests/"]
[dev-dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
rustix = { workspace = true }
serial_test = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, features = [ "rt-multi-thread", "macros" ] }
wash = { workspace = true }
wasi-common = { workspace = true }
wasmtime = { workspace = true }
wasmtime-vfs-memory = { workspace = true }
wasmtime-vfs-ledger = { workspace = true }
wasmtime-vfs-file = { workspace = true }
wasmtime-vfs-dir = { workspace = true }
wasmtime-wasi = { workspace = true }
[features]
interactive = []
[workspace]
members = ["ledger", "memory", "file", "dir", "keyfs"]
[workspace.dependencies]
anyhow = "1.0.65"
async-trait = "0.1.51"
digest = "0.10.5"
ecdsa = "0.14.8"
k256 = "0.11.1"
p256 = "0.11.1"
p384 = "0.11.1"
rand = "0.8.5"
rsa = "0.7.2"
rustix = "0.35.11"
serial_test = "0.9.0"
sha2 = "0.10.6"
signature = "1.6.3"
tempfile = "3.3.0"
tokio = { version = "1.21.2", default-features = false }
uuid = "1.1.2"
wash = { version = "0.1.0", git = "https://github.com/rvolosatovs/wash", artifact = "bin", target = "wasm32-wasi", default-features = false }
wasi-common = "3.0.1"
wasmtime = "3.0.1"
wasmtime-vfs-dir = { path = "./dir", version = "0.1.0" }
wasmtime-vfs-file = { path = "./file", version = "0.1.0" }
wasmtime-vfs-ledger = { path = "./ledger", version = "0.1.0" }
wasmtime-vfs-memory = { path = "./memory", version = "0.1.0" }
wasmtime-wasi = "3.0.1"