[package]
edition = "2021"
name = "agentos-vfs-core"
version = "0.2.13"
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/agent-os"
[lib]
name = "vfs"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "package_format"
path = "tests/package_format.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_single_symlink_fs"
path = "tests/posix_single_symlink_fs.rs"
[[test]]
name = "posix_tar_fs"
path = "tests/posix_tar_fs.rs"
[[test]]
name = "posix_vfs"
path = "tests/posix_vfs.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.blake3]
version = "1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_bare]
version = "0.5"
[dependencies.serde_json]
version = "1.0"
[dependencies.vbare]
version = "0.0.4"
[dependencies.web-time]
version = "1.1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
]
[build-dependencies.vbare-compiler]
version = "0.0.5"
package = "rivet-vbare-compiler"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.agentos-runtime]
version = "0.2.13"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.memmap2]
version = "0.9"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tar]
version = "0.4"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tracing]
version = "0.1"