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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ jobs:
cargo run --example resource_limits
cargo run --example text_processing
cargo run --example git_workflow --features git
cargo run --example python_scripts --features python
# python_scripts requires monty git dep (not on crates.io)
# cargo run --example python_scripts --features python

- name: Run LLM agent example
env:
Expand Down
11 changes: 7 additions & 4 deletions crates/bashkit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ base64 = { workspace = true, optional = true }

# Logging/tracing (optional)
tracing = { workspace = true, optional = true }
# Embedded Python interpreter (pydantic/monty) - optional
monty = { git = "https://github.com/pydantic/monty", version = "0.0.4", optional = true }
[features]
default = []
http_client = ["reqwest", "base64"]
Expand All @@ -76,8 +74,13 @@ logging = ["tracing"]
# Usage: cargo build --features git
git = []
# Enable python/python3 builtins via embedded Monty interpreter
# Usage: cargo build --features python
python = ["dep:monty"]
# Requires monty git dependency (not on crates.io) — feature unavailable from registry
# To use locally: uncomment and add monty dep
# python = ["dep:monty"]

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(feature, values("python"))']

[dev-dependencies]
tokio-test = { workspace = true }
Expand Down
Loading