35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
cabal-version: 3.0
|
|
-- The cabal-version field refers to the version of the .cabal specification,
|
|
-- and can be different from the cabal-install (the tool) version and the
|
|
-- Cabal (the library) version you are using. As such, the Cabal (the library)
|
|
-- version used must be equal or greater than the version stated in this field.
|
|
-- Starting from the specification version 2.2, the cabal-version field must be
|
|
-- the first thing in the cabal file.
|
|
|
|
-- Initial package description 'ain48' generated by
|
|
name: ain48
|
|
version: 0.1.0.0
|
|
homepage: https://git.annwan.me/worldbuilding/ain48
|
|
license: MIT
|
|
author: Annwan
|
|
maintainer: annwan@annwan.me
|
|
build-type: Simple
|
|
|
|
common warnings
|
|
ghc-options: -Wall
|
|
library
|
|
default-language: GHC2024
|
|
hs-source-dirs: common
|
|
build-depends: base ^>= 4.21.2.0
|
|
exposed-modules: Ain48.Types
|
|
|
|
executable dump12
|
|
import: warnings
|
|
main-is: Main.hs
|
|
-- other-modules:
|
|
build-depends: base ^>=4.21.2.0
|
|
, ain48
|
|
, optparse-applicative
|
|
hs-source-dirs: dump12
|
|
default-language: GHC2024
|