Arnavion / k8s-openapi

Rust definitions of the resource types in the Kubernetes client API
Apache License 2.0
373 stars 42 forks source link

Bump base64 to 0.20 #130

Closed jesperpedersen closed 1 year ago

Arnavion commented 1 year ago

base64::decode_config(base64::STANDARD) -> base64::decode_engine(&base64::engine::DEFAULT_ENGINE)

base64::encode_config(foo, base64::STANDARD) -> base64::encode_engine(foo, &base64::engine::DEFAULT_ENGINE)

jesperpedersen commented 1 year ago

Ok, good to go

Arnavion commented 1 year ago

Yeah, I guess that also works. I did the _config versions originally to be explicit about which config is being used, but it's kinda obvious anyway.

Thanks.

jesperpedersen commented 1 year ago

Thanks !