Releases: x52dev/confik
Releases · x52dev/confik
confik: v0.12.0
- Update
secrecy
dependency to0.10
.
confik: v0.11.8
- Implement
Configuration
forchrono::NaiveDateTime
- Minimum supported Rust version (MSRV) is now 1.67 due to transitive
toml_edit
dependency.
confik: v0.11.7
- Implement
Configuration
forbigdecimal::BigDecimal
.
confik: v0.11.6
- Implement
Configuration
forbytesize::ByteSize
.
confik: v0.11.5
- Implement
Configuration
forchrono::NaiveDate
. - Implement
Configuration
forchrono::NaiveTime
.
confik: v0.11.4
- Override the following lints in macro generated code:
missing_copy_implementations
,missing_debug_implementations
,variant_size_differences
confik: v0.11.3
- Implement
Configuration
forcamino::Utf8PathBuf
.
confik: v0.11.2
- Implement
Configuration
foripnetwork::IpNetwork
.
confik: v0.11.1
- Parsing of database kind is now case-insensitive.
- Minimum supported Rust version (MSRV) is now 1.67 due to
toml_edit
dependency.
confik: v0.11.0
- Add support for
#[confik(try_from = "<ty>")]
field attribute, following the rules offrom
but usingTryFrom
. This will not break existing code unless it contains manual implementations ofConfiguration
. - Add
FailedTryInto
type. - Add
Error::TryInto
variant. .try_build()
methods now useError
as their return type.