wick-operation

wick-operation is a crate that provides the operation proc macro exposed by the wick-component crate.

Usage

```rust

use wick_component::operation;

[operation(unary_simple)]

fn myoperation(myinput: String) -> anyhow::Result { // ... } ```