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 exposed-modules: Packets.L2 , Packets.L3 , Packets.MacAddress default-language: Haskell2010 build-depends: base >= 4.7 && < 5 , bytestring , binary ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints Test-Suite test-theta type: exitcode-stdio-1.0 hs-source-dirs: src test main-is: Test.hs other-modules: Test.Packets.MacAddress , Test.Packets.L3 build-depends: base , theta-lib , tasty , tasty-hunit , tasty-hedgehog , hedgehog , bytestring , binary