name: ethereum-rlp version: 0.1.0 cabal-version: >=1.10 build-type: Simple author: Jamshid license-file: LICENSE maintainer: jamshidnh@gmail.com synopsis: Ethereum Recursive Length Prefix Encoding category: Data Structures license: Apache-2.0 description: RLP, as described in the Ethereum Yellowpaper source-repository head type: git location: https://github.com/blockapps/ethereum-rlp branch: master library hs-source-dirs: library default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples default-language: Haskell2010 exposed-modules: Blockchain.Data.RLP other-modules: Blockchain.Data.Util build-depends: bytestring == 0.10.*, base16-bytestring == 0.1.*, ansi-wl-pprint == 0.6.*, base >= 4 && < 5 test-suite test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Main.hs default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples default-language: Haskell2010 build-depends: ethereum-rlp, -- test-framework == 0.8.*, test-framework-hunit == 0.3.*, HUnit == 1.*, -- base == 4.*