Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions crates/bashkit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ python = ["dep:monty"]
# Usage: cargo build --features realfs
realfs = []

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dev-dependencies]
tokio-test = { workspace = true }
pretty_assertions = { workspace = true }
Expand Down
5 changes: 3 additions & 2 deletions crates/bashkit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,9 +380,10 @@
//! # Guides
//!
//! - [`custom_builtins_guide`] - Creating custom builtins
//! - `python_guide` - Embedded Python (Monty) guide (requires `python` feature)
//! - [`compatibility_scorecard`] - Feature parity tracking
//! - `logging_guide` - Structured logging with security (requires `logging` feature)
//! - [`live_mounts_guide`] - Live mount/unmount on running instances
//! - [`python_guide`] - Embedded Python (Monty) guide (requires `python` feature)
//! - [`logging_guide`] - Structured logging with security (requires `logging` feature)
//!
//! # Resources
//!
Expand Down
Loading