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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions-rust-lang/setup-rust-toolchain@166cdcfd11aee3cb47222f9ddb555ce30ddb9659
with:
toolchain: ${{ steps.msrv.outputs.version }}
target: wasm32-wasip1,wasm32-wasip2
target: wasm32-wasip1,wasm32-wasip2,wasm32-unknown-unknown

- name: Check with MSRV
run: |
Expand All @@ -59,7 +59,7 @@ jobs:
with:
toolchain: nightly,stable
components: rustfmt,clippy
target: wasm32-wasip1,wasm32-wasip2
target: wasm32-wasip1,wasm32-wasip2,wasm32-unknown-unknown

- name: Check formatting
run: cargo fmt -- --check
Expand Down
3 changes: 3 additions & 0 deletions src/agent-client-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ unstable_session_fork = ["agent-client-protocol-schema/unstable_session_fork"]
unstable_tool_call_name = ["agent-client-protocol-schema/unstable_tool_call_name"]
unstable_protocol_v2 = ["agent-client-protocol-schema/unstable_protocol_v2"]

# uuid on wasm32-unknown-unknown requires a source of randomness using one of the js, rng-getrandom, or rng-rand features
uuid-js = ["uuid/js"]

[dependencies]
agent-client-protocol-schema.workspace = true
agent-client-protocol-derive.workspace = true
Expand Down