blob: 04a5a2abd0265b088428c940df9d2fe42e44fb6c (
plain)
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
|
cabal-version: 2.0
name: ftilde
synopsis: F tilde (following https://doi.org/10.1145/3341701)
version: 0.1.0.0
license: MIT
author: Tom Smeding
maintainer: tom@tomsmeding.com
build-type: Simple
executable ftilde
main-is: Main.hs
other-modules:
AST
AD
Count
Eval
Examples
Gradient
Language
Pretty
Repl
Simplify
Sink
build-depends:
base >= 4.13 && < 4.15,
prettyprinter >= 1.7.0 && < 1.8,
vector,
some
hs-source-dirs: .
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded
|