From 1acffd74d6e60d0873bbe67360cdf610bd880e46 Mon Sep 17 00:00:00 2001 From: Mykhailo Chalyi Date: Thu, 2 Apr 2026 20:55:19 +0000 Subject: [PATCH 1/3] chore: update tagline to "Virtual sandbox" --- Cargo.toml | 4 ++-- README.md | 2 +- crates/bashkit/src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dd1acb46..bfa8bdee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,4 @@ -# Bashkit - Virtual bash interpreter for multi-tenant environments +# Bashkit - Virtual sandbox # Part of the Everruns ecosystem # See specs/ for design decisions @@ -12,7 +12,7 @@ edition = "2024" license = "MIT" authors = ["Everruns"] repository = "https://github.com/everruns/bashkit" -description = "Virtual bash interpreter for multi-tenant environments" +description = "Virtual sandbox" keywords = ["bash", "virtual", "ai", "agent", "everruns"] categories = ["command-line-utilities", "parser-implementations"] diff --git a/README.md b/README.md index a3e3a93e..12f27902 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![docs.rs](https://img.shields.io/docsrs/bashkit)](https://docs.rs/bashkit) [![Repo: Agent Friendly](https://img.shields.io/badge/Repo-Agent%20Friendly-blue)](AGENTS.md) -Virtual bash interpreter for multi-tenant environments. Written in Rust. +Virtual sandbox. Written in Rust. ## Features diff --git a/crates/bashkit/src/lib.rs b/crates/bashkit/src/lib.rs index 4e07c84a..3a1bc5f5 100644 --- a/crates/bashkit/src/lib.rs +++ b/crates/bashkit/src/lib.rs @@ -1,4 +1,4 @@ -//! Bashkit - Virtual bash interpreter for multi-tenant environments +//! Bashkit - Virtual sandbox //! //! Virtual bash interpreter for AI agents, CI/CD pipelines, and code sandboxes. //! Written in Rust. From 20d25af8a525e3520198b555f26176a1934bc88b Mon Sep 17 00:00:00 2001 From: Mykhailo Chalyi Date: Fri, 3 Apr 2026 02:00:51 +0000 Subject: [PATCH 2/3] chore: update tagline to "Awesomely fast virtual sandbox with bash and file system" --- Cargo.toml | 4 ++-- README.md | 2 +- crates/bashkit/src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bfa8bdee..55aeeb19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,4 @@ -# Bashkit - Virtual sandbox +# Bashkit - Awesomely fast virtual sandbox with bash and file system # Part of the Everruns ecosystem # See specs/ for design decisions @@ -12,7 +12,7 @@ edition = "2024" license = "MIT" authors = ["Everruns"] repository = "https://github.com/everruns/bashkit" -description = "Virtual sandbox" +description = "Awesomely fast virtual sandbox with bash and file system" keywords = ["bash", "virtual", "ai", "agent", "everruns"] categories = ["command-line-utilities", "parser-implementations"] diff --git a/README.md b/README.md index 12f27902..efeb5834 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![docs.rs](https://img.shields.io/docsrs/bashkit)](https://docs.rs/bashkit) [![Repo: Agent Friendly](https://img.shields.io/badge/Repo-Agent%20Friendly-blue)](AGENTS.md) -Virtual sandbox. Written in Rust. +Awesomely fast virtual sandbox with bash and file system. Written in Rust. ## Features diff --git a/crates/bashkit/src/lib.rs b/crates/bashkit/src/lib.rs index 3a1bc5f5..38fd8e36 100644 --- a/crates/bashkit/src/lib.rs +++ b/crates/bashkit/src/lib.rs @@ -1,4 +1,4 @@ -//! Bashkit - Virtual sandbox +//! Bashkit - Awesomely fast virtual sandbox with bash and file system //! //! Virtual bash interpreter for AI agents, CI/CD pipelines, and code sandboxes. //! Written in Rust. From ff61e2a7e4847bf8a37b25830f9bb32d5af24a3d Mon Sep 17 00:00:00 2001 From: Mykhailo Chalyi Date: Fri, 3 Apr 2026 03:09:42 +0000 Subject: [PATCH 3/3] fix(ci): add cargo-vet exemption for writeable 0.6.2 Lockfile has writeable 0.6.2 but only 0.6.3 was exempted, causing cargo-vet to fail in the Audit CI job. --- supply-chain/config.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/supply-chain/config.toml b/supply-chain/config.toml index 804ca15c..12807ce6 100644 --- a/supply-chain/config.toml +++ b/supply-chain/config.toml @@ -1798,6 +1798,10 @@ criteria = "safe-to-deploy" version = "0.244.0" criteria = "safe-to-deploy" +[[exemptions.writeable]] +version = "0.6.2" +criteria = "safe-to-deploy" + [[exemptions.writeable]] version = "0.6.3" criteria = "safe-to-deploy"