| Crates.io | wick-operation |
| lib.rs | wick-operation |
| version | 0.3.0 |
| created_at | 2023-09-14 15:27:14.446676+00 |
| updated_at | 2023-10-18 00:25:33.362181+00 |
| description | Proc macro for generating operation implementations |
| homepage | |
| repository | https://github.com/candlecorp/wick |
| max_upload_size | |
| id | 972774 |
| size | 10,928 |
wick-operation is a crate that provides the operation proc macro exposed by the wick-component crate.
use wick_component::operation;
#[operation(unary_simple)]
fn my_operation(my_input: String) -> anyhow::Result<String> {
// ...
}