petergoldstein / dalli

High performance memcached client for Ruby
MIT License
3.1k stars 451 forks source link

Drop dependency on base64 #986

Closed Earlopain closed 9 months ago

Earlopain commented 10 months ago

982 added base64 as a dependency in order to avoid a warning with Ruby 3.3

The base64 gem is mostly a wrapper around pack/unpack and as such is easy to replace. Other gems have opted for the same approach:

petergoldstein commented 9 months ago

I like this approach.

petergoldstein commented 9 months ago

Thanks @Earlopain