-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathcardano-wallet-secrets.cabal
81 lines (73 loc) · 1.91 KB
/
cardano-wallet-secrets.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
cabal-version: 3.0
name: cardano-wallet-secrets
version: 0.2024.9.3
synopsis: Utilities for storing private keys and passphrases
license: Apache-2.0
homepage: https://github.com/cardano-foundation/cardano-wallet
author: Cardano Foundation (High Assurance Lab)
maintainer: [email protected]
build-type: Simple
common language
default-language:
Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
common opts-lib
ghc-options:
-Wall -Wcompat
-Wredundant-constraints
-Wincomplete-uni-patterns -Wincomplete-record-updates
if flag(release)
ghc-options: -O2 -Werror
common opts-exe
import: opts-lib
ghc-options: -threaded -rtsopts
flag release
description: Enable optimization and `-Werror`
default: False
manual: True
library
import: language, opts-lib
hs-source-dirs: src
build-depends:
, base
, bytestring
, cardano-crypto
, cborg
, crypto-primitives
, deepseq
, generic-arbitrary
, memory
, text
, text-class
, time
, QuickCheck
exposed-modules:
Cardano.Wallet.Primitive.Passphrase
Cardano.Wallet.Primitive.Passphrase.Current
Cardano.Wallet.Primitive.Passphrase.Gen
Cardano.Wallet.Primitive.Passphrase.Legacy
Cardano.Wallet.Primitive.Passphrase.Types
test-suite test
import: language, opts-exe
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: run-test-suite.hs
build-depends:
, base
, bytestring
, cardano-wallet-secrets
, cardano-wallet-test-utils
, hspec
, memory
, text
, text-class
, QuickCheck
, with-utf8
build-tool-depends:
, hspec-discover:hspec-discover
other-modules:
Cardano.Wallet.Primitive.PassphraseSpec
Cardano.Wallet.Primitive.Passphrase.LegacySpec
Spec