LonerDan
LonerDan
Hello, would it be possible to implement a support for loading data defined using the YAML tag 'binary' defined [here](https://yaml.org/type/binary.html)? Does the underlying libyaml library handle those tags in any...
Let's say I have the following: ```rust #[derive(Debug, FromField)] #[darling(attributes(my_attribute))] struct StructFieldReceiver { ident: Option, vis: syn::Visibility, ty: syn::Type, name: String, sql_type: SqlType, } #[derive(Debug, FromMeta)] #[darling(rename_all = "lowercase")] enum...
Changes the way `Config` is constructed by introducing helper struct `ConfigBuilder`, which follows the builder pattern. This enables more ergonomic function call chaining, while still preserving the option to call...
### Description Elide dependency on the `gloo` crate for the `wasm` target (in relation to its [likely upcoming archival])(https://github.com/ranile/gloo/issues/506). Fixes yewstack/yew#3553. This pull request consists of the following changes: -...