cabal-version: 1.12 -- This file has been generated from package.yaml by hpack version 0.33.0. -- -- see: https://github.com/sol/hpack -- -- hash: daf9d113ab07f34535add52d2847376b97cff35d776c080dd059b6e08e8e76b0 name: restartable version: 0.1.0.0 synopsis: Minimal live coding library for model-view-event-update applications. description: Minimal live coding library. It can store model of the model-view-event-update applications. It uses `FromJSON` and `ToJSON` with default value for absent data elements, and `Generic` parser otherwise: > import Initially(initially, Initial) > data MyModel = Model { timestamp :: UTCTime } > instance FromJSON MyModel where > parseJSON = initially myDefaultValue > instance Initial MyModel > > main = restartable . Please see the README on GitHub at homepage: https://github.com/mjgajda/restartable#readme bug-reports: https://github.com/mjgajda/restartable/issues author: MichaƂ J. Gajda maintainer: mjgajda@migamake.com copyright: '2020 license: BSD3 license-file: LICENSE build-type: Simple extra-source-files: README.md ChangeLog.md source-repository head type: git location: https://github.com/mjgajda/restartable library exposed-modules: Control.Restartable.Checkpoint Control.Restartable.Initial other-modules: Paths_restartable hs-source-dirs: src build-depends: aeson , base >=4.7 && <5 , bytestring , linear , mtl , optics , scientific , text , unix , unordered-containers , vector default-language: Haskell2010