Skip to content

Commit

Permalink
Merge pull request #5 from leanprover-community/toml
Browse files Browse the repository at this point in the history
chore: migrate to lakefile.toml
  • Loading branch information
kim-em authored May 6, 2024
2 parents 188eb34 + 2c958bd commit 7cec593
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 21 deletions.
21 changes: 0 additions & 21 deletions lakefile.lean

This file was deleted.

24 changes: 24 additions & 0 deletions lakefile.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name = "importGraph"
defaultTargets = ["ImportGraph", "graph"]

[[require]]
name = "Cli"
git = "https://github.com/leanprover/lean4-cli"
rev = "main"

[[require]]
name = "std"
git = "https://github.com/leanprover/std4"
rev = "main"

[[lean_lib]]
name = "ImportGraph"

# `lake exe graph` constructs import graphs in `.dot` or graphical formats.
[[lean_exe]]
name = "graph"
root = "Main"
# Enables the use of the Lean interpreter by the executable (e.g., `runFrontend`)
# at the expense of increased binary size on Linux.
# Remove this line if you do not need such functionality.
supportInterpreter = true

0 comments on commit 7cec593

Please sign in to comment.