rosa/rosa.cabal

36 lines
1.2 KiB
Plaintext
Raw Normal View History

2014-11-22 18:30:27 +01:00
name: rosa
2019-11-10 11:44:47 +01:00
version: 0.5.0.1
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.
2017-05-17 20:48:58 +02:00
license: GPL-3
2014-11-22 17:15:49 +01:00
license-file: LICENSE
author: rnhmjoj
2019-11-10 11:44:47 +01:00
maintainer: rnhmjoj@inventati.org
copyright: (C) Michele Guerini Rocco 2019
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
2017-05-17 20:50:03 +02:00
build-depends: base >=4.8 && <5.0 , aeson, text,
2019-11-10 11:07:41 +01:00
vector, uri-encode, unordered-containers,
2017-05-17 20:50:03 +02:00
wreq, lens, bytestring, directory,
optparse-applicative, namecoin-update
2016-05-05 18:06:38 +02:00
ghc-options: -O2