From 646f1f9732cbe2237f5fde1c7c31e752dd509596 Mon Sep 17 00:00:00 2001 From: GTBarkley Date: Fri, 9 Jun 2023 23:35:49 +0000 Subject: [PATCH] initial commit --- .gitignore | 2 ++ CommAlg.lean | 1 + lake-manifest.json | 33 +++++++++++++++++++++++++++++++++ lakefile.lean | 14 ++++++++++++++ lean-toolchain | 1 + 5 files changed, 51 insertions(+) create mode 100644 .gitignore create mode 100644 CommAlg.lean create mode 100644 lake-manifest.json create mode 100644 lakefile.lean create mode 100644 lean-toolchain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..20c60d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/build +/lake-packages/* diff --git a/CommAlg.lean b/CommAlg.lean new file mode 100644 index 0000000..e99d3a6 --- /dev/null +++ b/CommAlg.lean @@ -0,0 +1 @@ +def hello := "world" \ No newline at end of file diff --git a/lake-manifest.json b/lake-manifest.json new file mode 100644 index 0000000..9a5e5f8 --- /dev/null +++ b/lake-manifest.json @@ -0,0 +1,33 @@ +{"version": 4, + "packagesDir": "lake-packages", + "packages": + [{"git": + {"url": "https://github.com/EdAyers/ProofWidgets4", + "subDir?": null, + "rev": "c43db94a8f495dad37829e9d7ad65483d68c86b8", + "name": "proofwidgets", + "inputRev?": "v0.0.11"}}, + {"git": + {"url": "https://github.com/leanprover-community/mathlib4.git", + "subDir?": null, + "rev": "708e9902d89d156ad45651c7e51cf77a51bb6b67", + "name": "mathlib", + "inputRev?": null}}, + {"git": + {"url": "https://github.com/gebner/quote4", + "subDir?": null, + "rev": "c71f94e34c1cda52eef5c93dc9da409ab2727420", + "name": "Qq", + "inputRev?": "master"}}, + {"git": + {"url": "https://github.com/JLimperg/aesop", + "subDir?": null, + "rev": "ca73109cc40837bc61df8024c9016da4b4f99d4c", + "name": "aesop", + "inputRev?": "master"}}, + {"git": + {"url": "https://github.com/leanprover/std4", + "subDir?": null, + "rev": "d5471b83378e8ace4845f9a029af92f8b0cf10cb", + "name": "std", + "inputRev?": "main"}}]} diff --git a/lakefile.lean b/lakefile.lean new file mode 100644 index 0000000..6cad1c5 --- /dev/null +++ b/lakefile.lean @@ -0,0 +1,14 @@ +import Lake +open Lake DSL + +package «comm_alg» { + -- add any package configuration options here +} + +require mathlib from git + "https://github.com/leanprover-community/mathlib4.git" + +@[default_target] +lean_lib «CommAlg» { + -- add any library configuration options here +} diff --git a/lean-toolchain b/lean-toolchain new file mode 100644 index 0000000..cbd5420 --- /dev/null +++ b/lean-toolchain @@ -0,0 +1 @@ +leanprover/lean4:nightly-2023-06-07