[package]
edition = "2024"
rust-version = "1.95"
name = "vsh"
version = "0.5.0"
authors = ["Mert <62549656+fswair@users.noreply.github.com>"]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-latency transactional filesystem simulation and execution for agents"
homepage = "https://github.com/fswair/vsh"
readme = "README.md"
keywords = [
"agents",
"sandbox",
"simulation",
"workspace",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/fswair/vsh"
[lib]
name = "vsh"
path = "src/lib.rs"
[dependencies.vsh-runtime-core]
version = "=0.5.0"
package = "vsh-runtime"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
elided_lifetimes_in_paths = "deny"
missing_docs = "warn"
unsafe_code = "forbid"
unused_lifetimes = "deny"
unused_qualifications = "deny"