50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
cabal-version: 3.0
|
|
name: proto
|
|
version: 0.1.0.0
|
|
|
|
-- A short (one-line) description of the package.
|
|
-- synopsis:
|
|
|
|
-- A longer description of the package.
|
|
-- description:
|
|
|
|
license: BSD-3-Clause
|
|
license-file: LICENSE
|
|
author: Ali Abrar, Cale Gibbard, Obsidian Systems
|
|
maintainer: maintainer@obsidian.systems
|
|
copyright: 2025 Obsidian Systems
|
|
build-type: Simple
|
|
extra-doc-files: CHANGELOG.md
|
|
|
|
common warnings
|
|
ghc-options: -Wall
|
|
|
|
library
|
|
import: warnings
|
|
|
|
exposed-modules:
|
|
Diagram
|
|
Diagram.Hasse
|
|
|
|
default-extensions:
|
|
FlexibleContexts
|
|
ImportQualifiedPost
|
|
LambdaCase
|
|
RankNTypes
|
|
ScopedTypeVariables
|
|
TypeOperators
|
|
|
|
build-depends: base ^>=4.19.2.0
|
|
, containers
|
|
, semialign
|
|
, these
|
|
, colour
|
|
, diagrams-contrib
|
|
, diagrams-core
|
|
, diagrams-lib
|
|
, diagrams-svg
|
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|