Skip to content

Commit

Permalink
Update from Hackage at 2019-03-29T23:32:56Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Mar 29, 2019
1 parent 7bd8e07 commit 17a371c
Show file tree
Hide file tree
Showing 2 changed files with 308 additions and 0 deletions.
307 changes: 307 additions & 0 deletions morley/0.1.0.2/morley.cabal
@@ -0,0 +1,307 @@
cabal-version: 2.4
name: morley
version: 0.1.0.2
synopsis: Developer tools for the Michelson Language
description:
A library to make writing smart contracts in Michelson — the smart contract
language of the Tezos blockchain — pleasant and effective.
homepage: https://gitlab.com/camlcase-dev/morley
license: AGPL-3.0-or-later
license-file: LICENSE
author: camlCase, Serokell
maintainer: john@camlcase.io
copyright: 2018 camlCase, 2019 Tocqueville Group
category: Language
build-type: Simple
bug-reports: https://issues.serokell.io/issues/TM
extra-doc-files: CONTRIBUTING.md
, README.md

source-repository head
type: git
location: git@gitlab.com:camlcase-dev/morley.git

library
build-tool-depends: autoexporter:autoexporter

hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Michelson.Interpret
, Michelson.TypeCheck
, Michelson.Typed
, Michelson.Typed.Value
, Michelson.Untyped
, Morley.Aliases
, Morley.Default
, Morley.Lexer
, Morley.Macro
, Morley.Ext
, Morley.Parser
, Morley.Parser.Annotations
, Morley.Parser.Helpers
, Morley.Runtime
, Morley.Runtime.GState
, Morley.Runtime.TxData
, Morley.Test
, Morley.Test.Dummy
, Morley.Test.Gen
, Morley.Test.Import
, Morley.Test.Integrational
, Morley.Test.Unit
, Morley.Test.Util
, Morley.Types
, Tezos.Address
, Tezos.Core
, Tezos.Crypto
other-modules:
Michelson.EqParam
, Michelson.TypeCheck.Helpers
, Michelson.TypeCheck.Instr
, Michelson.TypeCheck.Types
, Michelson.TypeCheck.Value
, Michelson.Typed.Annotation
, Michelson.Typed.Arith
, Michelson.Typed.Convert
, Michelson.Typed.CValue
, Michelson.Typed.Extract
, Michelson.Typed.Instr
, Michelson.Typed.Polymorphic
, Michelson.Typed.Sing
, Michelson.Typed.T
, Michelson.Untyped.Annotation
, Michelson.Untyped.Contract
, Michelson.Untyped.Instr
, Michelson.Untyped.Type
, Michelson.Untyped.Value

build-depends: aeson
, aeson-options
, aeson-pretty
, base-noprelude >= 4.7 && < 5
, base16-bytestring
, base58-bytestring
, bifunctors
, bytestring
, containers
, cryptonite
, data-default
, fmt
, formatting
, hspec
, lens
, megaparsec >= 7.0.0
, memory
, morley-prelude
, named
, QuickCheck
, text
, time
, timerep
, parser-combinators >= 1.0.0
, directory
, singletons
, syb
, mtl
, vinyl
ghc-options: -Weverything
-Wno-missing-exported-signatures
-Wno-missing-import-lists
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-unsafe
-Wno-safe
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Wno-implicit-prelude
default-extensions:
ApplicativeDo
AllowAmbiguousTypes
BangPatterns
ConstraintKinds
DataKinds
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
EmptyCase
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MonadFailDesugaring
MultiParamTypeClasses
MultiWayIf
NegativeLiterals
OverloadedLabels
OverloadedStrings
PatternSynonyms
PolyKinds
RankNTypes
RecordWildCards
RecursiveDo
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TupleSections
TypeApplications
TypeFamilies
TypeOperators
UndecidableInstances
ViewPatterns

executable morley
hs-source-dirs: app
main-is: Main.hs
autogen-modules: Paths_morley
other-modules: Paths_morley
default-language: Haskell2010
build-depends: base-noprelude >= 4.7 && < 5
, fmt
, megaparsec >= 7.0.0
, morley
, morley-prelude
, named
, optparse-applicative
, pretty-simple
, text
ghc-options: -Weverything
-Wno-missing-exported-signatures
-Wno-missing-import-lists
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-unsafe
-Wno-safe
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Wno-implicit-prelude
default-extensions:
ApplicativeDo
AllowAmbiguousTypes
BangPatterns
ConstraintKinds
DataKinds
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
EmptyCase
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MonadFailDesugaring
MultiParamTypeClasses
MultiWayIf
NegativeLiterals
OverloadedLabels
OverloadedStrings
PatternSynonyms
PolyKinds
RankNTypes
RecordWildCards
RecursiveDo
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TupleSections
TypeApplications
TypeFamilies
TypeOperators
UndecidableInstances
ViewPatterns

test-suite morley-test
hs-source-dirs: test
main-is: Spec.hs
default-language: Haskell2010
type: exitcode-stdio-1.0
other-modules: Test.Arbitrary
, Test.CValConversion
, Test.Interpreter
, Test.Interpreter.Auction
, Test.Interpreter.CallSelf
, Test.Interpreter.Compare
, Test.Interpreter.Conditionals
, Test.Interpreter.EnvironmentSpec
, Test.Interpreter.StringCaller
, Test.Macro
, Test.Ext
, Test.Morley.Runtime
, Test.Parser
, Test.Serialization.Aeson
, Test.Tezos.Address
, Test.Tezos.Crypto
, Test.Typecheck
, Test.Util.Contracts
, Test.Util.QuickCheck
, Test.ValConversion
build-depends:
aeson
, base-noprelude >= 4.7 && < 5
, containers
, directory
, filepath
, fmt
, formatting
, hspec
, hspec-golden-aeson
, HUnit
, lens
, megaparsec >= 7.0.0
, morley
, morley-prelude
, QuickCheck
, quickcheck-arbitrary-adt
, quickcheck-instances
, text
, time
, universum
, vinyl
ghc-options: -Weverything
-Wno-missing-exported-signatures
-Wno-missing-import-lists
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-unsafe
-Wno-safe
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Wno-implicit-prelude
default-extensions:
ApplicativeDo
AllowAmbiguousTypes
BangPatterns
ConstraintKinds
DataKinds
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
EmptyCase
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MonadFailDesugaring
MultiParamTypeClasses
MultiWayIf
NegativeLiterals
OverloadedLabels
OverloadedStrings
PatternSynonyms
PolyKinds
RankNTypes
RecordWildCards
RecursiveDo
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TupleSections
TypeApplications
TypeFamilies
TypeOperators
UndecidableInstances
ViewPatterns
1 change: 1 addition & 0 deletions morley/0.1.0.2/morley.json
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"277e1775095c848af80fdd418902950c","Skein512_512":"21c9d087df1b0e25f0a169fde34064eb180e4cca62dec480376c1c05b8f366ebd557bdd05e6ec57b02a9b396d58502a50b45718ba9f82553cf25ea44197b78a0","SHA1":"ae4b9f4df558a14bd576031c6759c41054f9396a","SHA512":"72ecbc0703393103e916f2b6a526ea063393528954c74a2c90624524e418d7dc321a703b86be0239baadc90ee29ec6e9f6ad0d40a4bd7ed490ca1417446bfb5e","SHA256":"24ad92cf10961ddd26ef6d28b96461262072abf18be968695f088f61e9235416"},"package-locations":["https://hackage.haskell.org/package/morley-0.1.0.2/morley-0.1.0.2.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/morley-0.1.0.2.tar.gz"],"package-size":112739}

0 comments on commit 17a371c

Please sign in to comment.