Skip to content

Commit

Permalink
Merge pull request #1 from kadena-community/colin/project-reorg
Browse files Browse the repository at this point in the history
Project Reorganization
fosskers authored Nov 29, 2019
2 parents 67d6800 + 57ad9c5 commit bc30f8e
Showing 10 changed files with 646 additions and 485 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.stack-work/*
*.dump-hi
5 changes: 4 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Changelog for bag-of-holding

## Unreleased changes
## 1.0.1 (2019-11-29)

The dependency on `chainweb` has been dropped, vastly reducing the number of
transitive dependencies required by `boh`. This also reduces binary size.
13 changes: 10 additions & 3 deletions bag-of-holding.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: bag-of-holding
version: 1.0.0
version: 1.0.1
synopsis: A terminal-based wallet for Chainweb.
description: A terminal-based wallet for Chainweb.
homepage: https://github.com/kadena-community/bag-of-holding
@@ -28,7 +28,6 @@ common commons
build-depends:
, aeson ^>=1.4
, base >=4.12 && <5
, chainweb ^>=1.0
, errors ^>=2.3
, generic-lens >=1.1 && <1.3
, microlens ^>=0.4
@@ -39,7 +38,10 @@ common commons
library
import: commons
hs-source-dirs: lib
exposed-modules: Holding
exposed-modules:
Holding
Holding.Chainweb

build-depends:
, prettyprinter ^>=1.2
, servant ^>=0.16
@@ -51,6 +53,11 @@ executable boh
ghc-options: -threaded -with-rtsopts=-N
hs-source-dirs: exec
main-is: BOH.hs
other-modules:
BOH.CLI
BOH.Signing
BOH.UI

build-depends:
, bag-of-holding
, brick >=0.47 && <0.50
Loading

0 comments on commit bc30f8e

Please sign in to comment.