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
3 changes: 2 additions & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ opentelemetry-otlp = { version = "0.15", features = ["tonic"], optional = true }
tracing-opentelemetry = { version = "0.23", optional = true }
rocksdb = { version = "0.22", optional = true }
redis = { version = "0.27", features = ["tokio-comp", "aio"], optional = true }
# Proto definitions from the spec repo (exposes DEP_MACP_PROTO_PROTO_DIR to build.rs via links metadata).
# Proto definitions from crates.io (exposes DEP_MACP_PROTO_PROTO_DIR to build.rs via links metadata).
# For local proto development, temporarily switch to a path dependency:
# macp-proto = { path = "../multiagentcoordinationprotocol/packages/proto-rust" }
macp-proto = { git = "https://github.com/multiagentcoordinationprotocol/multiagentcoordinationprotocol.git" }
macp-proto = "0.1.0"

[dev-dependencies]
tempfile = "3"
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ See `docs/architecture.md` for detailed layer descriptions.

```text
runtime/
├── proto/ # protobuf schemas copied from the RFC/spec repository
├── src/
│ ├── main.rs # server startup, TLS, persistence, auth wiring
│ ├── server.rs # gRPC adapter and request authentication
Expand Down Expand Up @@ -277,7 +276,7 @@ Check that the sender identity matches the session's participant list. For `Comm
The runtime requires write access to `MACP_DATA_DIR`. Check directory permissions. Log append failures are fatal — the runtime will not acknowledge a message without a durable record.

**Proto version mismatch**
Update the `macp-proto` dependency version in `Cargo.toml` and run `cargo build`.
Update the `macp-proto` version in `Cargo.toml` (published on crates.io) and run `cargo build`.

## Testing

Expand Down
Loading