rosa/rosa.cabal

35 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-11-22 18:30:27 +01:00
name: rosa
2015-06-29 05:31:57 +02:00
version: 0.2.1.0
2014-11-22 18:52:38 +01:00
synopsis: Query the namecoin blockchain
2014-11-22 17:15:49 +01:00
description:
2014-11-22 18:30:27 +01:00
Rosa is a commmand line tool to query the namecoin blockhain.
2014-11-22 17:15:49 +01:00
It gets the JSON value of a name and other infos using namecoind
local server or the dnschain REST api and display them in a pretty
format.
license: MIT
license-file: LICENSE
author: Rnhmjoj
maintainer: micheleguerinirocco@me.com
2015-04-11 20:29:16 +02:00
copyright: (C) Michele Guerini Rocco 2015
2014-11-22 17:15:49 +01:00
category: Utility
build-type: Simple
extra-source-files: README.md, LICENSE
cabal-version: >=1.10
2015-01-19 20:48:15 +01:00
source-repository head
type: git
location: https://github.com/rnhmjoj/rosa
2014-11-22 18:30:27 +01:00
executable rosa
2014-11-22 17:15:49 +01:00
main-is: Main.hs
other-modules: Json
hs-source-dirs: src
2014-11-22 17:15:49 +01:00
default-language: Haskell2010
other-extensions: RecordWildCards, OverloadedStrings
2015-04-11 20:29:16 +02:00
build-depends: base >=4.8 && <5.0 , aeson, text,
vector, unordered-containers,
wreq, lens >=4.4, bytestring,
argparser, process
2014-11-22 17:15:49 +01:00
ghc-options: -O2