-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivory-tower-lorawan.cabal
66 lines (60 loc) · 2.17 KB
/
ivory-tower-lorawan.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
cabal-version: 2.2
name: ivory-tower-lorawan
version: 0.1.0.0
synopsis: LoRaWAN protocol implementation
description: LoRaWAN protocol implementation (serialization primitives and crypto)
license: BSD-3-Clause
author: Sorki
maintainer: srk@48.io
copyright: 2020 Sorki
category: Embedded
build-type: Simple
data-files: support/lorawan-crypto.c
, support/lorawan-crypto.h
, support/aes/aes.h
, support/aes/aescrypt.c
, support/aes/aeskey.c
, support/aes/aesopt.h
, support/aes/aestab.c
, support/aes/aestab.h
, support/aes/brg_endian.h
, support/aes/brg_types.h
, support/aes/mode_hdr.h
, support/aesmodes/cmac.c
, support/aesmodes/cmac.h
library
hs-source-dirs: src
exposed-modules: Ivory.Tower.LoraWAN
Ivory.Tower.LoraWAN.Artifacts
Ivory.Tower.LoraWAN.Import
Ivory.Tower.LoraWAN.Keys
Ivory.Tower.LoraWAN.Pack
Ivory.Tower.LoraWAN.Types
Ivory.Tower.LoraWAN.Types.Major
Ivory.Tower.LoraWAN.Types.MType
Ivory.Tower.LoraWAN.Types.Regs
Ivory.Tower.LoraWAN.Types.Structs
Paths_ivory_tower_lorawan
build-depends: base >= 4.6,
filepath,
ivory,
ivory-artifact,
ivory-serialize,
ivory-stdlib,
tower
default-language: Haskell2010
ghc-options: -Wall -Wunused-packages
test-suite test
hs-source-dirs: test
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules: Types
ghc-options: -Wall -Wunused-packages
build-depends: base >= 4.6 && < 5
, ivory
, ivory-artifact
, ivory-stdlib
, ivory-serialize
, ivory-tasty
, ivory-tower-lorawan
default-language: Haskell2010