Skip to content
Draft
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
2 changes: 1 addition & 1 deletion mcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "mcp"
path = "src/main.rs"

[lib]
name = "iii_mcp"
name = "mcp"
path = "src/lib.rs"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion mcp/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use serde_json::json;
use std::sync::Arc;
use tracing_subscriber::EnvFilter;

use iii_mcp::{config, functions, manifest};
use mcp::{config, functions, manifest};

use crate::config::McpConfig;

Expand Down
2 changes: 1 addition & 1 deletion mcp/tests/common/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use serde_json::json;
use tokio::net::TcpStream;
use tokio::sync::OnceCell;

use iii_mcp::{
use mcp::{
config::McpConfig,
functions::{self, FUNCTION_ID},
};
Expand Down
2 changes: 1 addition & 1 deletion mcp/tests/steps/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//!
//! Pins the JSON-RPC error envelopes the bridge returns for malformed
//! / unsupported / hidden requests. Codes mirror the JSON-RPC spec
//! constants in [`iii_mcp::jsonrpc`].
//! constants in [`mcp::jsonrpc`].

use cucumber::{then, when};
use serde_json::json;
Expand Down
Loading