Quiet

Results 4 issues of Quiet

It would be nice if templates could be rendered without using build scripts. The current approach is not very bad, but it could be more ergonomic with macros. The pro...

https://github.com/askldjd/statsd-filter-proxy-rs/blob/6ba64dabc280b3e483a93f29df93688945b7f8fc/src/filter.rs#L4 If `&buf` isn't valid UTF-8, this results in undefined behaviour. Since `filter` is not marked as `unsafe`, it is currently possible to cause undefined behaviour by calling a safe...

Adds two derive macros `ModalModel` and `CreateModal` as analogues to `CommandModel` and `CreateCommand`. Short example: ```rs #[derive(CreateModal, ModalModel)] #[modal( title = "Give me your credit card information.", custom_id = "modal_demo::ExampleModal"...

When using `#[derive(OperationIo)]` with `#[aide(input_with = "SomeStruct")]`, the generated `OperationInput` impl uses `SomeStruct`'s `OperationInput::operation_input` implementation, but does not implement `OperationInput::inferred_early_responses`. If `SomeStruct` has a special implementation for this function, it...