Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove unused dependencies #170

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions pact-tng.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ common pact-common
, bytestring
, cereal
, containers
, criterion
, data-default
, deepseq
, direct-sqlite
Expand All @@ -65,19 +64,15 @@ common pact-common
, pact-time
, parsers
, prettyprinter
, prettyprinter-ansi-terminal
, transformers
, transformers-base
, text
, vector
, vector-algorithms
, megaparsec
, cryptonite
, memory
, safe-exceptions
, statistics
, ralist >= 0.4.0.0
, primitive
, haskeline
, semirings
, utf8-string
Expand All @@ -88,11 +83,7 @@ common pact-common
, cborg
, clock
, unordered-containers
, groups
, mod
, neat-interpolation
, deriving-compat
-- ^ is used by the `BuiltinDocs` module.
, ghc-bignum
-- Legacy pact decoding
, bound
Expand All @@ -107,7 +98,7 @@ common pact-common

ghc-options: -Wall -Werror -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
ghc-prof-options: -fprof-auto -fprof-auto-calls
default-language: Haskell2010
default-language: Haskell2010
default-extensions:
OverloadedStrings
DeriveGeneric
Expand All @@ -123,9 +114,17 @@ common pact-common

-- internal crypto lirbary
library pact-crypto
import: pact-common
default-language: Haskell2010
hs-source-dirs: crypto
build-depends: poly
build-depends:
poly
, mod
, primitive
, groups
, base
, semirings
, deepseq
, vector

exposed-modules:
Pact.Core.Crypto.Hash.Poseidon
Expand Down Expand Up @@ -318,6 +317,7 @@ executable gasmodel
, pact-tng
, criterion
, terminal-progress-bar
, neat-interpolation

other-modules:
Pact.Core.GasModel.BuiltinsGas
Expand All @@ -340,6 +340,7 @@ executable profile-tx
, pact-tng
, criterion
, terminal-progress-bar
, neat-interpolation

other-modules:
-- Pact.Core.GasModel.BuiltinsGas
Expand Down
Loading