Skip to content
Open
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
58 changes: 34 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/bashkit-eval/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ path = "src/main.rs"
# Mira eval framework (crates.io). Imported as `mira`; the `macros` feature
# provides the #[eval] discovery attribute. We use the in-process Subject path
# (our own agent loop + provider stack) so we do NOT need mira-everruns.
mira-eval = { version = "0.3", features = ["macros"] }
mira-eval = { version = "0.4", features = ["macros"] }

bashkit = { path = "../bashkit", features = ["scripted_tool", "jq"] }
tokio = { workspace = true, features = ["rt-multi-thread", "io-std", "io-util", "fs"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/bashkit-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ serde_json = { workspace = true }
# hands them to `MontyObject::BigInt`, and monty (git tag v0.0.18) depends on
# num-bigint 0.4. Bumping to 0.5 makes the two BigInt types mismatch and fails
# to compile, so this must track whatever major version bashkit core / monty use.
num-bigint = "^0.4.6"
num-bigint = "^0.5.1"

# Native (non-wasm) targets: full feature set.
# realfs: always-on so Python callers can use mount_real_* APIs.
Expand Down
Loading