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.
66 lines
2.2 KiB
66 lines
2.2 KiB
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 |
|
, Packets.MacAddress |
|
, Packets.Icmp |
|
, Packets.Checksum |
|
, Packets.Serializable |
|
, DeviceConfig.Ltp |
|
, Types |
|
default-language: Haskell2010 |
|
build-depends: base >= 4.7 && < 5 |
|
, bytestring |
|
, binary |
|
, template-haskell |
|
, parsec |
|
, errors |
|
, text |
|
, mtl |
|
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 |
|
extensions: DuplicateRecordFields |
|
hs-source-dirs: src test |
|
main-is: Test.hs |
|
other-modules: Test.Packets.MacAddress |
|
, Test.Packets.L3 |
|
, Packets.MacAddress |
|
build-depends: base |
|
, theta-lib |
|
, tasty |
|
, tasty-hunit |
|
, tasty-hedgehog |
|
, hedgehog |
|
, bytestring |
|
, binary |
|
, template-haskell |
|
, errors |
|
, parsec |
|
, text
|
|
|