neomatrixcode / Faker.jl

generator of fake data for julia
https://faker.vercel.app/
MIT License
52 stars 11 forks source link

Nettle API breakage #1

Closed staticfloat closed 8 years ago

staticfloat commented 8 years ago

Nettle has just broken its API significantly, in order to be much more precompile-friendly. The big takeaway is that methods such as md5_hash(data) should be mapped to digest("md5", data), there are no more auto-generated types for hashes, and internally the code is a little easier to grok. This new version of Nettle.jl has not been released yet, I will make every effort to ensure that dependent packages such as this one have a chance to adapt before releasing the new version.

staticfloat commented 8 years ago

Once https://github.com/JuliaLang/METADATA.jl/pull/3537 is merged, this package's Nettle functionality will cease to work. I've opened a pull request to this repository with the necessary fixes.