- Don't depend on
base64
andserde
directly; instead, assume the consumer of the library is going to already have them available. This avoids the need to do version bumps in this project, and should hopefully be a no op for common usage, since any usage I can think of would already be using dependencies independently.
- Use base64 0.21.0-rc.1
- Support visibilities other than
pub
, e.g.pub(crate)
- Update to base64 0.21.0-beta.2
- Update to base64 0.21.0-beta.1
- Update to serde 1.0.152
- The
base64_serde_type
macro now uses anEngine
instead ofConfig
because that's how base64 0.20+ works.
- Use
base64
0.13.0
- Now serializer works with any input type that implements
AsRef<[u8]>
- Now deserializer works with any output type that implements
From<Vec<u8>>
- Use
base64
0.12.0 - Use
serde
(and related crates) 1.0.104
- Use
base64
0.11.0
- Bumped
base64
andserde
versions
- Bumped the
base64
dependency version
- Add ability to make the generated type
pub
- No functional changes, just better docs
- Initial release