v0.8.0
Notable Changes:
- Added derive field flag:
#[klickhouse(nested)]
for automatic nested structure composition. The target type must be::std::vec::Vec<T> where T: Row
. No other containers are supported at this time. - Added
rust_decimal
feature flag (non-default).rust_decimal::Decimal
implementsklickhouse::ToSql
andklickhouse::FromSql
in this release. ToSql
andRow::serialize_row
now pass in optional type hints. This is currently only used forrust_decimal
integration, but some more serialization coercions may be added in the future. This is an API breakage (hence minor version bump).