This repository has been archived by the owner on Nov 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mantra.cabal
86 lines (83 loc) · 2.88 KB
/
mantra.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
cabal-version: >= 1.10
name : mantra
description : This tool provides several script-oriented utilities for the Cardano blockchain. In particular, it posts metadata or mints/burns tokens. It can also generate scripts, compute script addresses, compute the fingerprint of a token, and download scripts.
version : 0.5.1.2
license : MIT
license-file : LICENSE
author : Brian W Bush
maintainer : [email protected]
category : Network
build-type : Simple
extra-source-files: ReadMe.md
library
exposed-modules : Mantra.Asset
Mantra.Chain
Mantra.Query
Mantra.Script
Mantra.Transaction
Mantra.Types
Mantra.Wallet
build-depends : base >= 4.14 && < 4.15
, aeson
, aeson-pretty
, base16-bytestring
, bech32
, bytestring
, cardano-api
, cardano-ledger-core
, cardano-ledger-shelley-ma
, cardano-ledger-alonzo
, containers
, cryptonite
, directory
, extra
, flat
, filepath
, memory
, mtl
, ouroboros-network
, shelley-spec-ledger
, strict-containers
, text
, transformers
, transformers-except
, unordered-containers
hs-source-dirs : src
default-language: Haskell2010
ghc-options : -Wall
executable mantra
main-is : Main.hs
other-modules : Mantra.Command
Mantra.Command.Bech32
Mantra.Command.Chain
Mantra.Command.Fingerprint
Mantra.Command.Info
Mantra.Command.Mint
Mantra.Command.Script
Mantra.Command.Transact
Mantra.Command.Types
Mantra.Command.Watch
Paths_mantra
build-depends : base >= 4.14 && < 4.15
, aeson
, aeson-pretty
, base16-bytestring
, bech32
, bytestring
, cardano-api
, containers
, cryptonite
, extra
, filepath
, mantra
, memory
, mtl
, optparse-applicative
, ouroboros-network
, text
, transformers
, transformers-except
, unordered-containers
hs-source-dirs : app
default-language: Haskell2010
ghc-options : -Wall