wasmer-vfs 3.1.1

Wasmer Virtual FileSystem
Documentation
[package]
name = "wasmer-vfs"
version = "3.1.1"
description = "Wasmer Virtual FileSystem"
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
license = "MIT"
edition = "2018"

[dependencies]
libc = { version = "^0.2", default-features = false, optional = true }
thiserror = "1"
tracing = { version = "0.1" }
typetag = { version = "0.1", optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
slab = { version = "0.4", optional = true }
webc = { version = "3.0.1", optional = true }
anyhow = { version = "1.0.66", optional = true }

[features]
default = ["host-fs", "mem-fs", "webc-fs", "static-fs"]
host-fs = ["libc"]
mem-fs = ["slab"]
webc-fs = ["webc", "anyhow"]
static-fs = ["webc", "anyhow", "mem-fs"]
enable-serde = [
    "serde",
    "typetag"
]
no-time = []