packages feed

derive-storable 0.1.0.5 → 0.1.0.6

raw patch · 3 files changed

+10/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for derive-storable +## 0.1.0.5  -- 2016-12-07++* Made the information about performance problems more visible in README.md+ ## 0.1.0.4  -- 2016-11-29  * Fixed the bug with Foreign.Storable.Generic.Internal.Instances module.
README.md view
@@ -8,6 +8,11 @@ * all fields of the constructor need to be GStorable. * implement a Generic instance (`derive (Generic)`) ++### Note on performance++There are some problems with performance of derived Storable instances. For now there exists a solution in form of GHC Core plugin - [derive-storable-plugin](https://hackage.haskell.org/package/derive-storable-plugin).+ # Usage  Here's an example:@@ -45,6 +50,3 @@  ``` -#Optimisation--There are some problems with performance of derived Storable instances. For now there exists a solution in form of GHC Core plugin - [derive-storable-plugin](https://hackage.haskell.org/package/derive-storable-plugin).
derive-storable.cabal view
@@ -1,6 +1,6 @@ name:                derive-storable -version:             0.1.0.5+version:             0.1.0.6 synopsis:            Derive Storable instances with GHC.Generics.             description:         Derive Storable instances with GHC.Generics. The derived Storable instances have the same alignment as C structs.