From 2dd308f4c7297053f587b3dec8301d580783b845 Mon Sep 17 00:00:00 2001 From: Rodolfo Olivieri Date: Fri, 13 Feb 2026 13:41:19 -0300 Subject: [PATCH] chore: include LICENSE in final crate tarball Required for packaging in distributions such as Fedora and others. Verified with: $ cargo package --list | grep LICENSE --- Cargo.toml | 1 + crates/rmcp-macros/Cargo.toml | 1 + crates/rmcp/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 0bc1f08b..48832dce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,6 +12,7 @@ edition = "2024" version = "0.15.0" authors = ["4t145 "] license = "Apache-2.0" +license-file = "LICENSE" repository = "https://github.com/modelcontextprotocol/rust-sdk/" description = "Rust SDK for Model Context Protocol" keywords = ["mcp", "sdk", "tokio", "modelcontextprotocol"] diff --git a/crates/rmcp-macros/Cargo.toml b/crates/rmcp-macros/Cargo.toml index 8413e5d9..b5992926 100644 --- a/crates/rmcp-macros/Cargo.toml +++ b/crates/rmcp-macros/Cargo.toml @@ -3,6 +3,7 @@ [package] name = "rmcp-macros" license = { workspace = true } +license-file = { workspace = true } version = { workspace = true } edition = { workspace = true } repository = { workspace = true } diff --git a/crates/rmcp/Cargo.toml b/crates/rmcp/Cargo.toml index f109a9f0..9d45fb98 100644 --- a/crates/rmcp/Cargo.toml +++ b/crates/rmcp/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "rmcp" license = { workspace = true } +license-file = { workspace = true } version = { workspace = true } edition = { workspace = true } repository = { workspace = true }