rust_mcp_schema/
generated_schema.rs

1/// Schema Version : Draft
2#[cfg(feature = "draft")]
3#[path = "generated_schema/draft/mcp_schema.rs"]
4mod schema_draft;
5#[cfg(feature = "draft")]
6pub use schema_draft::*;
7
8#[cfg(all(feature = "schema_utils", feature = "draft"))]
9#[path = "generated_schema/draft/schema_utils.rs"]
10pub mod schema_utils;
11
12/// Schema Version : 2024_11_05
13#[cfg(feature = "2024_11_05")]
14#[cfg(not(feature = "draft"))]
15#[path = "generated_schema/2024_11_05/mcp_schema.rs"]
16mod schema_2024_11_05;
17
18#[cfg(feature = "2024_11_05")]
19#[cfg(not(feature = "draft"))]
20pub use schema_2024_11_05::*;
21
22#[cfg(all(feature = "schema_utils", feature = "2024_11_05"))]
23#[cfg(not(feature = "draft"))]
24#[path = "generated_schema/2024_11_05/schema_utils.rs"]
25pub mod schema_utils;