diff options
Diffstat (limited to '')
-rw-r--r-- | tests/lean/hashmap/lakefile.lean | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/lean/hashmap/lakefile.lean b/tests/lean/hashmap/lakefile.lean new file mode 100644 index 00000000..c7d79306 --- /dev/null +++ b/tests/lean/hashmap/lakefile.lean @@ -0,0 +1,18 @@ +import Lake +open Lake DSL + +require mathlib from git + "https://github.com/leanprover-community/mathlib4.git" + +package «hashmap» { + -- add package configuration options here +} + +lean_lib «Base» { + -- add library configuration options here +} + +lean_lib «Hashmap» { + -- add library configuration options here +} + |