elicit_reqwest 0.8.3

MCP tool transport for reqwest — newtype wrappers, plugin registry, and contract-verified HTTP workflows
Documentation
1
2
3
4
5
6
7
8
9
10
//! Type re-exports and wrappers for reqwest types.

// Re-export enums directly from reqwest (now with full Elicitation support)
pub use reqwest::{Method, StatusCode, Version};

// url::Url has Elicitation support via elicitation feature = "url"
pub use url::Url;

// http::HeaderMap has Elicitation support via elicitation feature = "reqwest"
pub use http::HeaderMap;