Theta testing framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
2.2 KiB

2 years ago
name: theta
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/githubuser/theta#readme
license: BSD3
license-file: LICENSE
author: Denis Tereshkin
maintainer: denis@kasan.ws
copyright: 2023 Denis Tereshkin
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
CHANGELOG.md
library theta-lib
hs-source-dirs: src
extensions: DuplicateRecordFields
exposed-modules: Packets.L2
, Packets.L3
2 years ago
, Packets.MacAddress
, Packets.Icmp
, Packets.Checksum
, Packets.Serializable
, DeviceConfig.Ltp
, Types
2 years ago
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
2 years ago
, bytestring
, binary
, template-haskell
, parsec
, errors
, text
, mtl
2 years ago
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wmissing-export-lists
-Wmissing-home-modules
-Wpartial-fields
-Wredundant-constraints
2 years ago
Test-Suite test-theta
type: exitcode-stdio-1.0
extensions: DuplicateRecordFields
2 years ago
hs-source-dirs: src test
main-is: Test.hs
other-modules: Test.Packets.MacAddress
, Test.Packets.L3
, Packets.MacAddress
2 years ago
build-depends: base
, theta-lib
, tasty
, tasty-hunit
, tasty-hedgehog
, hedgehog
, bytestring
, binary
, template-haskell
, errors
, parsec
, text