|
| 1 | +name: bitcoin-script |
| 2 | +category: Network, Finance |
| 3 | +version: 0.11.2 |
| 4 | +license: MIT |
| 5 | +license-file: LICENSE |
| 6 | +copyright: (c) 2015 Leon Mergen |
| 7 | +author: Leon Mergen |
| 8 | + |
| 9 | +homepage: http://www.leonmergen.com/opensource.html |
| 10 | +bug-reports: http://github.com/solatis/haskell-bitcoin-script/issues |
| 11 | +stability: experimental |
| 12 | +synopsis: Compilation, manipulation and decompilation of Bitcoin scripts |
| 13 | +description: |
| 14 | + Provides pure functions to compile, decompile and manipulate Bitcoin scripts. |
| 15 | + This project relies heavily on the Haskoin project for the compiling and |
| 16 | + decompiling of the script assembly, and continuously merges changes downstream. |
| 17 | + |
| 18 | + The advantage this library has over Haskoin is that it uses very few |
| 19 | + dependencies and doesn't rely on external libraries such as LevelDB and snappy. |
| 20 | + |
| 21 | +build-type: Simple |
| 22 | +data-files: LICENSE, README.md |
| 23 | +cabal-version: >= 1.10 |
| 24 | +tested-with: GHC == 7.6, GHC == 7.8, GHC == 7.10, GHC == 8.6, GHC == 8.8 |
| 25 | + GHC == 8.10, GHCJS == 8.6 |
| 26 | + |
| 27 | +library |
| 28 | + hs-source-dirs: src |
| 29 | + ghc-options: -Wall -ferror-spans |
| 30 | + default-language: Haskell2010 |
| 31 | + |
| 32 | + exposed-modules: Data.Bitcoin.Script |
| 33 | + |
| 34 | + other-modules: Data.Bitcoin.Script.Types |
| 35 | + |
| 36 | + build-depends: base >= 4.3 && < 5 |
| 37 | + , text |
| 38 | + , bytestring |
| 39 | + , base16-bytestring |
| 40 | + , binary |
| 41 | + |
| 42 | +test-suite test-suite |
| 43 | + type: exitcode-stdio-1.0 |
| 44 | + ghc-options: -Wall -ferror-spans -threaded -auto-all -caf-all -fno-warn-type-defaults |
| 45 | + default-language: Haskell2010 |
| 46 | + hs-source-dirs: test |
| 47 | + main-is: Main.hs |
| 48 | + |
| 49 | + other-modules: Data.Bitcoin.ScriptSpec |
| 50 | + Spec |
| 51 | + Main |
| 52 | + |
| 53 | + build-depends: base >= 4.3 && < 5 |
| 54 | + , hspec |
| 55 | + |
| 56 | + , bytestring |
| 57 | + , bitcoin-script |
| 58 | + |
| 59 | +source-repository head |
| 60 | + type: git |
| 61 | + location: git://github.com/solatis/haskell-bitcoin-script.git |
| 62 | + branch: master |
0 commit comments