LonerDan

Results 3 issues of 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...

question

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...