[package]
edition = "2021"
name = "secure-exec-vfs-core"
version = "0.3.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic async virtual filesystem primitives"
readme = false
license = "Apache-2.0"
repository = "https://github.com/rivet-dev/secure-exec"
[lib]
name = "secure_exec_vfs_core"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "posix_mount_plugin"
path = "tests/posix_mount_plugin.rs"
[[test]]
name = "posix_mount_table"
path = "tests/posix_mount_table.rs"
[[test]]
name = "posix_root_fs"
path = "tests/posix_root_fs.rs"
[[test]]
name = "posix_vfs"
path = "tests/posix_vfs.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.blake3]
version = "1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
]