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: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ jobs:
- uses: dtolnay/rust-toolchain@1.86
- uses: Swatinem/rust-cache@v2
- name: Check
# The optional `gasp` feature is excluded: yoagent-state currently
# requires a newer rustc (let-chains) than the crate's 1.86 MSRV.
run: cargo check --features openapi
run: cargo check --all-features

# yoagent claims to be a tested GASP-conformant runtime — this job is the
# test: emit an agent repo with the gasp bridge (mock provider, no network)
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ rand = "0.10.0"
base64 = "0.22"
openapiv3 = { version = "2", optional = true }
serde_yaml_ng = { version = "0.10", optional = true }
yoagent-state = { version = "0.4.1", optional = true }
# 0.4.2 floor: 0.4.1 declared MSRV 1.85 but required 1.88 (let-chain)
yoagent-state = { version = "0.4.2", optional = true }

[features]
openapi = ["dep:openapiv3", "dep:serde_yaml_ng", "reqwest/query"]
Expand Down
3 changes: 0 additions & 3 deletions docs/concepts/gasp.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ agent-loop changes**:
yoagent = { version = "0.11", features = ["gasp"] }
```

> The `gasp` feature currently requires a newer Rust than the crate's 1.86
> MSRV (its `yoagent-state` dependency uses let-chains, stable since 1.88).


```rust
use yoagent::gasp::{GaspRecorder, GoalRef};
Expand Down
Loading