-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlakefile.lean
More file actions
44 lines (34 loc) · 1.06 KB
/
lakefile.lean
File metadata and controls
44 lines (34 loc) · 1.06 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
import Lake
open Lake DSL
package «ep133» where
version := StdVer.mk (SemVerCore.mk 0 1 0) ""
testDriver := "ep133_test"
leanOptions := #[
-- pretty-prints `fun a ↦ b`
⟨`pp.unicode.fun, true⟩,
-- disables automatic implicit arguments
⟨`autoImplicit, false⟩,
-- suppresses the checkBinderAnnotations error/warning
⟨`checkBinderAnnotations, false⟩,
]
moreServerOptions := #[
⟨`trace.debug, true⟩,
]
lean_lib «Ep133» where
srcDir := "src"
@[default_target]
lean_exe «ep133-cli» where
root := `Main
srcDir := "src"
supportInterpreter := false
lean_exe «ep133_test» where
root := `Ep133Test
srcDir := "src"
require mathlib from git
"https://github.com/leanprover-community/mathlib4" @ "v4.24.0"
require LSpec from git
"https://github.com/argumentcomputer/LSpec" @ "24cceb69c20fadca0fd3acabe39fa9270dfb47e6"
require Parser from git
"https://github.com/fgdorais/lean4-parser" @ "26d5ce4d60195a869b1fdb100b442794ea63e1ad"
require Cli from git
"https://github.com/mhuisi/lean4-cli" @ "v4.24.0"