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
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ axum = { version = "0.8", features = ["macros"] }
http-body-util = "0.1"

# Internal crates
mcpmux-core = { path = "crates/mcpmux-core" }
mcpmux-gateway = { path = "crates/mcpmux-gateway" }
mcpmux-mcp = { path = "crates/mcpmux-mcp" }
mcpmux-storage = { path = "crates/mcpmux-storage" }
mcpmux-core = { version = "0.0.1", path = "crates/mcpmux-core" }
mcpmux-gateway = { version = "0.0.1", path = "crates/mcpmux-gateway" }
mcpmux-mcp = { version = "0.0.1", path = "crates/mcpmux-mcp" }
mcpmux-storage = { version = "0.0.1", path = "crates/mcpmux-storage" }

[profile.release]
lto = true
Expand Down
1 change: 1 addition & 0 deletions apps/desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "mcpmux"
version.workspace = true
edition.workspace = true
publish = false
description = "McpMux - Centralized MCP Server Management"
authors = ["McpMux Team"]

Expand Down
1 change: 1 addition & 0 deletions crates/mcpmux-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "mcpmux-core"
version.workspace = true
edition.workspace = true
license.workspace = true
publish = false
description = "McpMux core domain logic, entities, and business rules"

[dependencies]
Expand Down
1 change: 1 addition & 0 deletions crates/mcpmux-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "mcpmux-gateway"
version.workspace = true
edition.workspace = true
license.workspace = true
publish = false
description = "McpMux Gateway - MCP proxy server with OAuth and aggregation"

[dependencies]
Expand Down
1 change: 1 addition & 0 deletions crates/mcpmux-mcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "mcpmux-mcp"
version.workspace = true
edition.workspace = true
license.workspace = true
publish = false
description = "MCP protocol implementation and client management"

[dependencies]
Expand Down
1 change: 1 addition & 0 deletions crates/mcpmux-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "mcpmux-storage"
version.workspace = true
edition.workspace = true
license.workspace = true
publish = false
description = "SQLite storage with encryption for McpMux"

[dependencies]
Expand Down
Loading