-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlakefile.toml
More file actions
59 lines (46 loc) · 1.33 KB
/
lakefile.toml
File metadata and controls
59 lines (46 loc) · 1.33 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# ============================================================
# lakefile.toml
# ============================================================
# REQ.FILE.PROJECT.IDENTITY
# Declares the externally visible identity and build surface of this package.
# Sections marked CUSTOM are expected to vary by repository.
# ============================================================
# REQUIRED PROJECT IDENTITY
# ============================================================
name = "StructuralExplainability"
version = "0.2.0"
license = "MIT"
keywords = [
"structural-explainability",
"integration",
"traceability",
"composition",
"invariants",
"formal-specification",
"formal-verification",
"proof-carrying",
"theorem-proving",
"lean4",
]
# === BUILD CONFIGURATION
defaultTargets = ["StructuralExplainability"]
[[require]]
name = "NeutralSubstrate"
scope = "git"
git = "https://github.com/structural-explainability/se-theory-neutral-substrate"
rev = "main"
[[require]]
name = "IdentityRegimes"
scope = "git"
git = "https://github.com/structural-explainability/se-theory-identity-regimes"
rev = "main"
# === EXPORT LIBRARY (public, exported)
[[lean_lib]]
name = "StructuralExplainability"
# === TEST LIBRARIES (internal, not exported)
[[lean_lib]]
name = "TestImport"
srcDir = "test"
[[lean_lib]]
name = "TestExport"
srcDir = "test"