blob: 14325474004da8791759620164621e5854c0b9b0 (
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
|
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
Examples
Gradient
Language
Repl
Simplify
Sink
build-depends:
base >= 4.13 && < 4.15,
vector,
some
hs-source-dirs: .
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded
|