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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 10

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
Expand All @@ -47,6 +47,11 @@ jobs:
- name: Build
run: cargo build --all-targets --all-features

- name: Check docs.rs build
env:
RUSTDOCFLAGS: --cfg docsrs
run: cargo +nightly doc -p agent-client-protocol --all-features --no-deps

- name: Install just
uses: taiki-e/install-action@d9be7d8cda89035c9c843f78bd44d4f72d8403d4
with:
Expand Down
3 changes: 0 additions & 3 deletions src/agent-client-protocol-conductor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ categories = ["development-tools"]
name = "agent-client-protocol-conductor"
path = "src/main.rs"

[features]
test-support = []

[dependencies]
agent-client-protocol = { workspace = true }
agent-client-protocol-trace-viewer.workspace = true
Expand Down
4 changes: 4 additions & 0 deletions src/agent-client-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ description = "Core protocol types and traits for the Agent Client Protocol"
keywords = ["acp", "agent", "protocol", "ai"]
categories = ["development-tools"]

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

[features]
default = []

Expand Down
1 change: 1 addition & 0 deletions src/agent-client-protocol/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![deny(missing_docs)]

//! # agent-client-protocol -- the Agent Client Protocol (ACP) SDK
Expand Down