We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f300e8f commit a8ce9c2Copy full SHA for a8ce9c2
2 files changed
.github/workflows/ci.yml
@@ -55,4 +55,6 @@ jobs:
55
run: cargo build --all-targets --all-features
56
57
- name: Run tests
58
- run: cargo test --all-features
+ run: |
59
+ cargo test --all-features
60
+ cargo test --all-features --doc
rust/acp.rs
@@ -84,10 +84,10 @@ use std::sync::Arc;
84
/// # Example
85
///
86
/// ```
87
-/// use agent_client_protocol::SessionId;
+/// use agent_client_protocol_schema::SessionId;
88
/// use std::sync::Arc;
89
90
-/// let session_id = SessionId(Arc::from("sess_abc123def456"));
+/// let session_id = SessionId::new("sess_abc123def456");
91
92
93
/// See protocol docs: [Session ID](https://agentclientprotocol.com/protocol/session-setup#session-id)
0 commit comments