Set the dependencies to github

This commit is contained in:
Danielle Jenkins 2025-03-06 22:59:47 -08:00
parent 9e2120e45e
commit 67a48cd6f8
2 changed files with 2307 additions and 7 deletions

2300
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -3,9 +3,9 @@ name = "cratedocs-mcp"
version = "0.1.0"
edition = "2021"
description = "Rust Documentation MCP Server for LLM crate assistance"
authors = ["Your Name <your.email@example.com>"]
authors = ["Claude <noreply@anthropic.com>"]
license = "MIT"
repository = "https://github.com/yourusername/cratedocs-mcp"
repository = "https://github.com/d6e/cratedocs-mcp"
[workspace]
members = [
@ -13,10 +13,10 @@ members = [
]
[dependencies]
# MCP dependencies from crates.io
mcp-server = "1.0.7"
mcp-core = "1.0.7"
mcp-macros = "1.0.7"
# MCP dependencies from GitHub
mcp-server = { git = "https://github.com/modelcontextprotocol/rust-sdk", rev = "c0bd94dd85a3535cb1580424465140d51bab2a17", package = "mcp-server" }
mcp-core = { git = "https://github.com/modelcontextprotocol/rust-sdk", rev = "c0bd94dd85a3535cb1580424465140d51bab2a17", package = "mcp-core" }
mcp-macros = { git = "https://github.com/modelcontextprotocol/rust-sdk", rev = "c0bd94dd85a3535cb1580424465140d51bab2a17", package = "mcp-macros" }
# HTTP and networking
tokio = { version = "1", features = ["full"] }
@ -45,4 +45,4 @@ path = "src/bin/doc_server.rs"
[[bin]]
name = "axum-docs"
path = "src/bin/axum_docs.rs"
path = "src/bin/axum_docs.rs"