aboutsummaryrefslogtreecommitdiff
path: root/hsm-gpio/hsm-gpio.cabal
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2025-01-14 15:42:46 -0800
committerPaul Oliver <contact@pauloliver.dev>2025-01-24 16:36:18 -0800
commitc18d30706ce647a7b640d73514eecb0aa442873c (patch)
tree35c93aff04e7d9e2153d696f00f2ac478043613f /hsm-gpio/hsm-gpio.cabal
parent7c360b79ee2e3230e6e5fe76c102dd688f9cf7b9 (diff)
Adds GPIO effect and dummy blinker service
Diffstat (limited to 'hsm-gpio/hsm-gpio.cabal')
-rw-r--r--hsm-gpio/hsm-gpio.cabal21
1 files changed, 21 insertions, 0 deletions
diff --git a/hsm-gpio/hsm-gpio.cabal b/hsm-gpio/hsm-gpio.cabal
new file mode 100644
index 0000000..8ff3e13
--- /dev/null
+++ b/hsm-gpio/hsm-gpio.cabal
@@ -0,0 +1,21 @@
+cabal-version: 3.4
+author: Paul Oliver
+build-type: Simple
+maintainer: contact@pauloliver.dev
+name: hsm-gpio
+version: 0.1.0.0
+
+library
+ build-depends:
+ , aeson
+ , base
+ , containers
+ , effectful-core
+ , hsm-core
+ , log-effectful
+ , process
+ , text
+
+ exposed-modules: Hsm.GPIO
+ ghc-options: -Wall -Wunused-packages
+ default-language: GHC2021