docs_rs_readme
Retrieve the README or overview content of a specified Rust crate from docs.rs. Input the crate name and optionally specify the version to access detailed documentation for your project.
Instructions
Get README/overview content of the specified crate
Input Schema
Name | Required | Description | Default |
---|---|---|---|
crate_name | Yes | Name of the crate to get README for | |
version | No | Specific version (optional, defaults to latest) |
Input Schema (JSON Schema)
{
"properties": {
"crate_name": {
"description": "Name of the crate to get README for",
"type": "string"
},
"version": {
"description": "Specific version (optional, defaults to latest)",
"type": "string"
}
},
"required": [
"crate_name"
],
"type": "object"
}