blob: 41b1a5afdd0d4148f0b42aebda3cf70a2d73930b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
cabal-version: 2.4
name: notes-util
version: 0.1.0.0
synopsis: A tool for querying and checking GHC Notes
bug-reports: https://gitlab.haskell.org/ghc/ghc
license: BSD-3-Clause
author: Ben Gamari
maintainer: ben@smart-cactus.org
copyright: (c) 2022 Ben Gamari
executable notes-util
main-is: Main.hs
other-modules: Notes
build-depends: base >= 4 && < 5 ,
bytestring,
containers,
directory,
text,
process,
array
default-language: Haskell2010
|