lean-runtime 2.0.2__tar.gz → 2.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/CHANGELOG.md +22 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/MANIFEST.in +1 -0
- {lean_runtime-2.0.2/lean_runtime.egg-info → lean_runtime-2.0.5}/PKG-INFO +28 -7
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/README.md +27 -6
- lean_runtime-2.0.5/catalog/environments.toml +38 -0
- lean_runtime-2.0.5/catalog/locks/core-v4.32.2.lock.json +17 -0
- lean_runtime-2.0.5/catalog/locks/mathlib-v4.30.0.lock.json +244 -0
- lean_runtime-2.0.5/catalog/locks/mathlib-v4.31.0.lock.json +244 -0
- lean_runtime-2.0.5/catalog/locks/mathlib-v4.32.2.lock.json +244 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/architecture.md +27 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/cli.md +9 -3
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/development.md +13 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/getting-started.md +15 -5
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/python-api.md +24 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/standalone-files.md +19 -7
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/bundles.py +54 -8
- lean_runtime-2.0.5/lean_runtime/discovery/__init__.py +69 -0
- lean_runtime-2.0.5/lean_runtime/discovery/analyzer.py +155 -0
- lean_runtime-2.0.5/lean_runtime/discovery/api.py +120 -0
- lean_runtime-2.0.5/lean_runtime/discovery/candidate.py +93 -0
- lean_runtime-2.0.5/lean_runtime/discovery/catalog.py +214 -0
- lean_runtime-2.0.5/lean_runtime/discovery/catalog_build.py +86 -0
- lean_runtime-2.0.5/lean_runtime/discovery/catalog_cli.py +49 -0
- lean_runtime-2.0.5/lean_runtime/discovery/catalog_manifest.py +160 -0
- lean_runtime-2.0.5/lean_runtime/discovery/data/catalog.json +1 -0
- lean_runtime-2.0.5/lean_runtime/discovery/defaults.py +17 -0
- lean_runtime-2.0.5/lean_runtime/discovery/engine.py +346 -0
- lean_runtime-2.0.5/lean_runtime/discovery/errors.py +13 -0
- lean_runtime-2.0.5/lean_runtime/discovery/module_inventory.py +80 -0
- lean_runtime-2.0.5/lean_runtime/discovery/planner.py +172 -0
- lean_runtime-2.0.5/lean_runtime/discovery/policy.py +70 -0
- lean_runtime-2.0.5/lean_runtime/discovery/probe.py +98 -0
- lean_runtime-2.0.5/lean_runtime/discovery/result.py +152 -0
- lean_runtime-2.0.5/lean_runtime/discovery/schema_resources.py +22 -0
- lean_runtime-2.0.5/lean_runtime/discovery/schemas/catalog-v1.schema.json +30 -0
- lean_runtime-2.0.5/lean_runtime/discovery/schemas/plan-v1.schema.json +15 -0
- lean_runtime-2.0.5/lean_runtime/discovery/schemas/result-v1.schema.json +15 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/models.py +2 -0
- lean_runtime-2.0.5/lean_runtime/py.typed +1 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/run_cli.py +141 -19
- {lean_runtime-2.0.2 → lean_runtime-2.0.5/lean_runtime.egg-info}/PKG-INFO +28 -7
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime.egg-info/SOURCES.txt +36 -1
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime.egg-info/entry_points.txt +1 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/pyproject.toml +3 -1
- lean_runtime-2.0.5/tests/conftest.py +109 -0
- lean_runtime-2.0.5/tests/discovery/e2e/test_real_discovery.py +207 -0
- lean_runtime-2.0.5/tests/discovery/test_analyzer.py +49 -0
- lean_runtime-2.0.5/tests/discovery/test_catalog.py +58 -0
- lean_runtime-2.0.5/tests/discovery/test_catalog_build.py +174 -0
- lean_runtime-2.0.5/tests/discovery/test_discovery_schema_resources.py +9 -0
- lean_runtime-2.0.5/tests/discovery/test_engine.py +228 -0
- lean_runtime-2.0.5/tests/discovery/test_planner.py +76 -0
- lean_runtime-2.0.5/tests/discovery/test_policy.py +19 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_bundles.py +53 -1
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_run_cli.py +58 -0
- lean_runtime-2.0.2/tests/conftest.py +0 -29
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/LICENSE +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/compatibility/README.md +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/compatibility/mathlib-4.32.2.json +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/compatibility/mathlib-4.32.2.toml +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/captures.md +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/case-study-v1.md +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/environments.md +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/index.md +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/local-projects.md +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/portable-copies.md +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/ready-programs.md +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/trust-and-limitations.md +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/docs/v1-precision.md +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/examples/mathlib.toml +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/__init__.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/__main__.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/_git.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/_paths.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/backends.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/cli.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/comparison.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/decisions.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/diagnostics.py +0 -0
- {lean_runtime-2.0.2/lean_runtime → lean_runtime-2.0.5/lean_runtime/discovery}/py.typed +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/environments.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/errors.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/events.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/facade.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/frontmatter.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/health.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/lake.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/lockfiles.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/locking.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/matrix.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/oci.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/policies.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/profiling.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/programs.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/projects.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/publisher_verification.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/references.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/resolver.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/runtime.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/schema_resources.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/serialization.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/specs.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/store.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/timings.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/toolchains.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/verification.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime/wire.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime.egg-info/dependency_links.txt +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime.egg-info/requires.txt +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/lean_runtime.egg-info/top_level.txt +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/mkdocs.yml +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/schemas/cleanup-v1.schema.json +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/schemas/comparison-v1.schema.json +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/schemas/execution-v1.schema.json +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/schemas/inspect-v1.schema.json +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/schemas/matrix-v1.schema.json +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/schemas/profile-v1.schema.json +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/schemas/verify-v1.schema.json +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/scripts/run_compatibility.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/scripts/run_v1_case_study.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/scripts/smoke_wheel.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/setup.cfg +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_backend.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_cli.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_diagnostics.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_environment_integration.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_events_health.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_facade.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_frontmatter.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_git.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_interactive.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_lockfiles.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_multifile.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_paths.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_prebuilt_policy.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_programs.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_projects.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_references.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_runtime.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_schema_resources.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_schemas.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_signatures.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_specs.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_store.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_toolchains.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_v1_precision.py +0 -0
- {lean_runtime-2.0.2 → lean_runtime-2.0.5}/tests/test_verification_inventory.py +0 -0
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
## 2.0.5
|
|
6
|
+
|
|
7
|
+
- Integrate bounded exact-environment discovery into the `lean-runtime` package.
|
|
8
|
+
- Make `lean-run FILE` discover standalone Mathlib environments automatically when
|
|
9
|
+
no exact context or pinned Lake project is present.
|
|
10
|
+
- Bundle an initial deterministic catalog for core Lean v4.32.2 and Mathlib
|
|
11
|
+
v4.32.2, v4.31.0, and v4.30.0, including exact Runtime locks and module inventories.
|
|
12
|
+
- Add `lean_runtime.discovery` for explicit planning, catalog, and authoritative
|
|
13
|
+
discovery APIs, plus the `lean-runtime-catalog` maintainer command.
|
|
14
|
+
|
|
15
|
+
Version 2.0.4 was not published because its release tag retained 2.0.3 package
|
|
16
|
+
metadata.
|
|
17
|
+
|
|
18
|
+
## 2.0.3
|
|
19
|
+
|
|
20
|
+
- Accept portable-copy symlinks whose normalized targets remain inside the
|
|
21
|
+
extracted copy, including common links such as `docs/README.md -> ../README.md`.
|
|
22
|
+
- Continue rejecting absolute or escaping symlink targets, duplicate archive
|
|
23
|
+
members, and later archive writes that traverse an extracted symlink.
|
|
24
|
+
|
|
3
25
|
## 2.0.2
|
|
4
26
|
|
|
5
27
|
- Remove staged environments safely when Git-for-Windows leaves source pack
|
|
@@ -3,6 +3,7 @@ include mkdocs.yml
|
|
|
3
3
|
recursive-include docs *.md
|
|
4
4
|
recursive-include examples *.toml
|
|
5
5
|
recursive-include compatibility *.json *.md *.toml
|
|
6
|
+
recursive-include catalog *.json *.toml
|
|
6
7
|
recursive-include scripts *.py
|
|
7
8
|
recursive-include schemas *.json
|
|
8
9
|
recursive-include tests *.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lean-runtime
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.5
|
|
4
4
|
Summary: Run Lean 4 proofs from Python or standalone files
|
|
5
5
|
Author: Alejandro Radisic
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -62,13 +62,9 @@ Inside an existing pinned Lake project, just pass the file:
|
|
|
62
62
|
lean-run MyProject/Main.lean
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
Standalone files do not need a throwaway Lake project or dependency declaration:
|
|
66
66
|
|
|
67
67
|
```lean
|
|
68
|
-
-- /// lean-runtime
|
|
69
|
-
-- requires = ["mathlib@v4.32.2"]
|
|
70
|
-
-- ///
|
|
71
|
-
|
|
72
68
|
import Mathlib
|
|
73
69
|
|
|
74
70
|
example : 2 + 2 = 4 := by norm_num
|
|
@@ -78,13 +74,38 @@ example : 2 + 2 = 4 := by norm_num
|
|
|
78
74
|
lean-run Main.lean
|
|
79
75
|
```
|
|
80
76
|
|
|
77
|
+
When no explicit context or pinned Lake project exists, `lean-run` analyzes imports,
|
|
78
|
+
ranks a bounded set of exact environments from its bundled catalog, and asks Lean to
|
|
79
|
+
check each candidate. The successful exact lock is retained by Runtime. Pin it for
|
|
80
|
+
portable reuse whenever desired:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
lean-run Main.lean --lock-out environment.lock.json
|
|
84
|
+
lean-run Main.lean --lock environment.lock.json
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
The initial catalog covers core Lean v4.32.2 plus Mathlib v4.32.2, v4.31.0, and
|
|
88
|
+
v4.30.0. Runtime first tries its local store and downloadable environment libraries,
|
|
89
|
+
then builds the exact source environment when necessary. Use `--no-source-build` to
|
|
90
|
+
forbid that potentially large fallback or `--offline` to use retained environments only.
|
|
91
|
+
|
|
92
|
+
Explicit frontmatter remains available when the desired context is already known:
|
|
93
|
+
|
|
94
|
+
```lean
|
|
95
|
+
-- /// lean-runtime
|
|
96
|
+
-- requires = ["mathlib@v4.32.2"]
|
|
97
|
+
-- ///
|
|
98
|
+
|
|
99
|
+
import Mathlib
|
|
100
|
+
```
|
|
101
|
+
|
|
81
102
|
The same context can be supplied from the command line:
|
|
82
103
|
|
|
83
104
|
```bash
|
|
84
105
|
lean-run Main.lean --with mathlib@v4.32.2
|
|
85
106
|
```
|
|
86
107
|
|
|
87
|
-
Create an exact lock for CI without changing the file:
|
|
108
|
+
Create an exact lock from an explicit dependency for CI without changing the file:
|
|
88
109
|
|
|
89
110
|
```bash
|
|
90
111
|
lean-run Main.lean --with mathlib@v4.32.2 \
|
|
@@ -27,13 +27,9 @@ Inside an existing pinned Lake project, just pass the file:
|
|
|
27
27
|
lean-run MyProject/Main.lean
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
Standalone files do not need a throwaway Lake project or dependency declaration:
|
|
31
31
|
|
|
32
32
|
```lean
|
|
33
|
-
-- /// lean-runtime
|
|
34
|
-
-- requires = ["mathlib@v4.32.2"]
|
|
35
|
-
-- ///
|
|
36
|
-
|
|
37
33
|
import Mathlib
|
|
38
34
|
|
|
39
35
|
example : 2 + 2 = 4 := by norm_num
|
|
@@ -43,13 +39,38 @@ example : 2 + 2 = 4 := by norm_num
|
|
|
43
39
|
lean-run Main.lean
|
|
44
40
|
```
|
|
45
41
|
|
|
42
|
+
When no explicit context or pinned Lake project exists, `lean-run` analyzes imports,
|
|
43
|
+
ranks a bounded set of exact environments from its bundled catalog, and asks Lean to
|
|
44
|
+
check each candidate. The successful exact lock is retained by Runtime. Pin it for
|
|
45
|
+
portable reuse whenever desired:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
lean-run Main.lean --lock-out environment.lock.json
|
|
49
|
+
lean-run Main.lean --lock environment.lock.json
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
The initial catalog covers core Lean v4.32.2 plus Mathlib v4.32.2, v4.31.0, and
|
|
53
|
+
v4.30.0. Runtime first tries its local store and downloadable environment libraries,
|
|
54
|
+
then builds the exact source environment when necessary. Use `--no-source-build` to
|
|
55
|
+
forbid that potentially large fallback or `--offline` to use retained environments only.
|
|
56
|
+
|
|
57
|
+
Explicit frontmatter remains available when the desired context is already known:
|
|
58
|
+
|
|
59
|
+
```lean
|
|
60
|
+
-- /// lean-runtime
|
|
61
|
+
-- requires = ["mathlib@v4.32.2"]
|
|
62
|
+
-- ///
|
|
63
|
+
|
|
64
|
+
import Mathlib
|
|
65
|
+
```
|
|
66
|
+
|
|
46
67
|
The same context can be supplied from the command line:
|
|
47
68
|
|
|
48
69
|
```bash
|
|
49
70
|
lean-run Main.lean --with mathlib@v4.32.2
|
|
50
71
|
```
|
|
51
72
|
|
|
52
|
-
Create an exact lock for CI without changing the file:
|
|
73
|
+
Create an exact lock from an explicit dependency for CI without changing the file:
|
|
53
74
|
|
|
54
75
|
```bash
|
|
55
76
|
lean-run Main.lean --with mathlib@v4.32.2 \
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
schema = "lean-runtime.discovery.catalog-source/v1"
|
|
2
|
+
generated_at = "2026-08-08T16:24:59Z"
|
|
3
|
+
|
|
4
|
+
[[environment]]
|
|
5
|
+
id = "core-v4.32.2"
|
|
6
|
+
channel = "stable"
|
|
7
|
+
lock = "locks/core-v4.32.2.lock.json"
|
|
8
|
+
inventory_packages = []
|
|
9
|
+
modules = ["Init", "Lean", "Std"]
|
|
10
|
+
library_hints = []
|
|
11
|
+
created_at = "2026-08-08T16:24:59Z"
|
|
12
|
+
|
|
13
|
+
[[environment]]
|
|
14
|
+
id = "mathlib-v4.32.2"
|
|
15
|
+
channel = "stable"
|
|
16
|
+
lock = "locks/mathlib-v4.32.2.lock.json"
|
|
17
|
+
references = ["github:leanprover-community/mathlib4@v4.32.2"]
|
|
18
|
+
inventory_packages = ["mathlib"]
|
|
19
|
+
library_hints = []
|
|
20
|
+
created_at = "2026-07-28T18:36:13+02:00"
|
|
21
|
+
|
|
22
|
+
[[environment]]
|
|
23
|
+
id = "mathlib-v4.31.0"
|
|
24
|
+
channel = "stable"
|
|
25
|
+
lock = "locks/mathlib-v4.31.0.lock.json"
|
|
26
|
+
references = ["github:leanprover-community/mathlib4@v4.31.0"]
|
|
27
|
+
inventory_packages = ["mathlib"]
|
|
28
|
+
library_hints = []
|
|
29
|
+
created_at = "2026-06-15T14:22:22Z"
|
|
30
|
+
|
|
31
|
+
[[environment]]
|
|
32
|
+
id = "mathlib-v4.30.0"
|
|
33
|
+
channel = "stable"
|
|
34
|
+
lock = "locks/mathlib-v4.30.0.lock.json"
|
|
35
|
+
references = ["github:leanprover-community/mathlib4@v4.30.0"]
|
|
36
|
+
inventory_packages = ["mathlib"]
|
|
37
|
+
library_hints = []
|
|
38
|
+
created_at = "2026-05-26T18:25:31Z"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lock_id": "lock_83e4ada30f7aa251dd42fb99d3e576849d278fb3e1c2c81c06aadd2a3616e195",
|
|
3
|
+
"manifest": {
|
|
4
|
+
"fixedToolchain": false,
|
|
5
|
+
"lakeDir": ".lake",
|
|
6
|
+
"name": "lean_runtime_environment",
|
|
7
|
+
"packages": [],
|
|
8
|
+
"packagesDir": ".lake/packages",
|
|
9
|
+
"version": "1.2.0"
|
|
10
|
+
},
|
|
11
|
+
"packages": [],
|
|
12
|
+
"root_lakefile": "name = \"lean_runtime_environment\"\nversion = \"0.0.0\"\ndefaultTargets = [\"LeanRuntimeEnvironment\"]\n\n[[lean_lib]]\nname = \"LeanRuntimeEnvironment\"\n",
|
|
13
|
+
"root_module": "\n/- Generated by Lean Runtime. -/\n",
|
|
14
|
+
"schema": "lean-runtime-environment-lock/1",
|
|
15
|
+
"spec_digest": "spec_9202fc6a5f4488d9b4a0c09a293b7fa8d7002ae3822be8d345c7efa006ca9bc5",
|
|
16
|
+
"toolchain": "leanprover/lean4:v4.32.2"
|
|
17
|
+
}
|
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lock_id": "lock_f9a835e9c2467c8a31cc752a72e7c3f651df114fa017da47090ba7eba6517149",
|
|
3
|
+
"manifest": {
|
|
4
|
+
"fixedToolchain": false,
|
|
5
|
+
"lakeDir": ".lake",
|
|
6
|
+
"name": "lean_runtime_environment",
|
|
7
|
+
"packages": [
|
|
8
|
+
{
|
|
9
|
+
"configFile": "lakefile.lean",
|
|
10
|
+
"inherited": false,
|
|
11
|
+
"inputRev": "c5ea00351c28e24afc9f0f84379aa41082b1188f",
|
|
12
|
+
"manifestFile": "lake-manifest.json",
|
|
13
|
+
"name": "mathlib",
|
|
14
|
+
"rev": "c5ea00351c28e24afc9f0f84379aa41082b1188f",
|
|
15
|
+
"scope": "",
|
|
16
|
+
"subDir": null,
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/leanprover-community/mathlib4.git"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"configFile": "lakefile.toml",
|
|
22
|
+
"inherited": true,
|
|
23
|
+
"inputRev": "main",
|
|
24
|
+
"manifestFile": "lake-manifest.json",
|
|
25
|
+
"name": "plausible",
|
|
26
|
+
"rev": "a456461b368b71d2accd95234832cd9c174b5437",
|
|
27
|
+
"scope": "leanprover-community",
|
|
28
|
+
"subDir": null,
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/leanprover-community/plausible"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"configFile": "lakefile.toml",
|
|
34
|
+
"inherited": true,
|
|
35
|
+
"inputRev": "main",
|
|
36
|
+
"manifestFile": "lake-manifest.json",
|
|
37
|
+
"name": "LeanSearchClient",
|
|
38
|
+
"rev": "c5d5b8fe6e5158def25cd28eb94e4141ad97c843",
|
|
39
|
+
"scope": "leanprover-community",
|
|
40
|
+
"subDir": null,
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "https://github.com/leanprover-community/LeanSearchClient"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"configFile": "lakefile.toml",
|
|
46
|
+
"inherited": true,
|
|
47
|
+
"inputRev": "main",
|
|
48
|
+
"manifestFile": "lake-manifest.json",
|
|
49
|
+
"name": "importGraph",
|
|
50
|
+
"rev": "515cf9d0c00ece5e661f6de4326a53dedc1e8ea1",
|
|
51
|
+
"scope": "leanprover-community",
|
|
52
|
+
"subDir": null,
|
|
53
|
+
"type": "git",
|
|
54
|
+
"url": "https://github.com/leanprover-community/import-graph"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"configFile": "lakefile.lean",
|
|
58
|
+
"inherited": true,
|
|
59
|
+
"inputRev": "v0.0.99",
|
|
60
|
+
"manifestFile": "lake-manifest.json",
|
|
61
|
+
"name": "proofwidgets",
|
|
62
|
+
"rev": "a84b3e2475d5c5ab979567b1ad8aea21b764bcf8",
|
|
63
|
+
"scope": "leanprover-community",
|
|
64
|
+
"subDir": null,
|
|
65
|
+
"type": "git",
|
|
66
|
+
"url": "https://github.com/leanprover-community/ProofWidgets4"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"configFile": "lakefile.toml",
|
|
70
|
+
"inherited": true,
|
|
71
|
+
"inputRev": "v4.30.0",
|
|
72
|
+
"manifestFile": "lake-manifest.json",
|
|
73
|
+
"name": "aesop",
|
|
74
|
+
"rev": "558915ae105bfd8074e22d597613d1961822adc2",
|
|
75
|
+
"scope": "leanprover-community",
|
|
76
|
+
"subDir": null,
|
|
77
|
+
"type": "git",
|
|
78
|
+
"url": "https://github.com/leanprover-community/aesop"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"configFile": "lakefile.toml",
|
|
82
|
+
"inherited": true,
|
|
83
|
+
"inputRev": "v4.30.0",
|
|
84
|
+
"manifestFile": "lake-manifest.json",
|
|
85
|
+
"name": "Qq",
|
|
86
|
+
"rev": "a6e6c34c4ef182f83b219a3a5a385f51f44bdc4c",
|
|
87
|
+
"scope": "leanprover-community",
|
|
88
|
+
"subDir": null,
|
|
89
|
+
"type": "git",
|
|
90
|
+
"url": "https://github.com/leanprover-community/quote4"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"configFile": "lakefile.toml",
|
|
94
|
+
"inherited": true,
|
|
95
|
+
"inputRev": "main",
|
|
96
|
+
"manifestFile": "lake-manifest.json",
|
|
97
|
+
"name": "batteries",
|
|
98
|
+
"rev": "32dc18cde3684679f3c003de608743b57498c56f",
|
|
99
|
+
"scope": "leanprover-community",
|
|
100
|
+
"subDir": null,
|
|
101
|
+
"type": "git",
|
|
102
|
+
"url": "https://github.com/leanprover-community/batteries"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"configFile": "lakefile.toml",
|
|
106
|
+
"inherited": true,
|
|
107
|
+
"inputRev": "v4.30.0",
|
|
108
|
+
"manifestFile": "lake-manifest.json",
|
|
109
|
+
"name": "Cli",
|
|
110
|
+
"rev": "6b907cf12b2e445ccb7c24bc208ef04a1f39e84c",
|
|
111
|
+
"scope": "leanprover",
|
|
112
|
+
"subDir": null,
|
|
113
|
+
"type": "git",
|
|
114
|
+
"url": "https://github.com/leanprover/lean4-cli"
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"packagesDir": ".lake/packages",
|
|
118
|
+
"version": "1.2.0"
|
|
119
|
+
},
|
|
120
|
+
"packages": [
|
|
121
|
+
{
|
|
122
|
+
"artifact_command": [],
|
|
123
|
+
"inherited": true,
|
|
124
|
+
"name": "Cli",
|
|
125
|
+
"requested_revision": "v4.30.0",
|
|
126
|
+
"revision": "6b907cf12b2e445ccb7c24bc208ef04a1f39e84c",
|
|
127
|
+
"root_module": null,
|
|
128
|
+
"source": "git",
|
|
129
|
+
"source_id": "source_c01f06910785f51a955b789fe595cb0f7a9e31fdbd52a9c179c13bc15a215aba",
|
|
130
|
+
"subdir": null,
|
|
131
|
+
"tree_hash": "8a76534436fb49125055d57998a2907a396186f8",
|
|
132
|
+
"url": "https://github.com/leanprover/lean4-cli"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"artifact_command": [],
|
|
136
|
+
"inherited": true,
|
|
137
|
+
"name": "LeanSearchClient",
|
|
138
|
+
"requested_revision": "main",
|
|
139
|
+
"revision": "c5d5b8fe6e5158def25cd28eb94e4141ad97c843",
|
|
140
|
+
"root_module": null,
|
|
141
|
+
"source": "git",
|
|
142
|
+
"source_id": "source_de17867f530aa12a11295b9e954c0bc71adf2e186913d1eb3d494b206a324b67",
|
|
143
|
+
"subdir": null,
|
|
144
|
+
"tree_hash": "d0224b6df6c90cc0b4ed2db6218037d31bfd6f52",
|
|
145
|
+
"url": "https://github.com/leanprover-community/LeanSearchClient"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"artifact_command": [],
|
|
149
|
+
"inherited": true,
|
|
150
|
+
"name": "Qq",
|
|
151
|
+
"requested_revision": "v4.30.0",
|
|
152
|
+
"revision": "a6e6c34c4ef182f83b219a3a5a385f51f44bdc4c",
|
|
153
|
+
"root_module": null,
|
|
154
|
+
"source": "git",
|
|
155
|
+
"source_id": "source_60de60b0b4c17b986970ce14b7745f03577878d68d571d26b0f79ad2050944c5",
|
|
156
|
+
"subdir": null,
|
|
157
|
+
"tree_hash": "3cd6c8c7454ab4cdc4f5c7068250d42e6f072b42",
|
|
158
|
+
"url": "https://github.com/leanprover-community/quote4"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"artifact_command": [],
|
|
162
|
+
"inherited": true,
|
|
163
|
+
"name": "aesop",
|
|
164
|
+
"requested_revision": "v4.30.0",
|
|
165
|
+
"revision": "558915ae105bfd8074e22d597613d1961822adc2",
|
|
166
|
+
"root_module": null,
|
|
167
|
+
"source": "git",
|
|
168
|
+
"source_id": "source_d00c4fd39cd426bf0c5055708b35c89ee9d4a93bb7b1703858a84820b53d7a83",
|
|
169
|
+
"subdir": null,
|
|
170
|
+
"tree_hash": "9f9a222ac975ad751c92bcf0f46de9fd2b0c3cfb",
|
|
171
|
+
"url": "https://github.com/leanprover-community/aesop"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"artifact_command": [],
|
|
175
|
+
"inherited": true,
|
|
176
|
+
"name": "batteries",
|
|
177
|
+
"requested_revision": "main",
|
|
178
|
+
"revision": "32dc18cde3684679f3c003de608743b57498c56f",
|
|
179
|
+
"root_module": null,
|
|
180
|
+
"source": "git",
|
|
181
|
+
"source_id": "source_e9f2d8aa0918281163471c383fe2b84f3e8664c515d68e2b5a8be71a8bf1a656",
|
|
182
|
+
"subdir": null,
|
|
183
|
+
"tree_hash": "436fbfdcb885492763ccee85e5db580d1995966f",
|
|
184
|
+
"url": "https://github.com/leanprover-community/batteries"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"artifact_command": [],
|
|
188
|
+
"inherited": true,
|
|
189
|
+
"name": "importGraph",
|
|
190
|
+
"requested_revision": "main",
|
|
191
|
+
"revision": "515cf9d0c00ece5e661f6de4326a53dedc1e8ea1",
|
|
192
|
+
"root_module": null,
|
|
193
|
+
"source": "git",
|
|
194
|
+
"source_id": "source_a017eacbcf51b53b1088560de28a2887167215ef1c65dbce09eb4fe0d884e9f7",
|
|
195
|
+
"subdir": null,
|
|
196
|
+
"tree_hash": "7418207a8b90a9f8e7223c20009d7eab86a4fd53",
|
|
197
|
+
"url": "https://github.com/leanprover-community/import-graph"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"artifact_command": [],
|
|
201
|
+
"inherited": false,
|
|
202
|
+
"name": "mathlib",
|
|
203
|
+
"requested_revision": "c5ea00351c28e24afc9f0f84379aa41082b1188f",
|
|
204
|
+
"revision": "c5ea00351c28e24afc9f0f84379aa41082b1188f",
|
|
205
|
+
"root_module": "Mathlib",
|
|
206
|
+
"source": "git",
|
|
207
|
+
"source_id": "source_fe2d2fc9c4c54f6dc89ac1ccd4c00581a362e2c2f1914e024983c4d70c375637",
|
|
208
|
+
"subdir": null,
|
|
209
|
+
"tree_hash": "1fe688f4d9e84fb268a300f8ac33cbca883fbd28",
|
|
210
|
+
"url": "https://github.com/leanprover-community/mathlib4.git"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"artifact_command": [],
|
|
214
|
+
"inherited": true,
|
|
215
|
+
"name": "plausible",
|
|
216
|
+
"requested_revision": "main",
|
|
217
|
+
"revision": "a456461b368b71d2accd95234832cd9c174b5437",
|
|
218
|
+
"root_module": null,
|
|
219
|
+
"source": "git",
|
|
220
|
+
"source_id": "source_6a376c3e5442e8aaca75bf1fbffba6168941014ad82653c242c5b646042557ba",
|
|
221
|
+
"subdir": null,
|
|
222
|
+
"tree_hash": "cbfb86e477a2ed89137953b22bbf38149658b672",
|
|
223
|
+
"url": "https://github.com/leanprover-community/plausible"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"artifact_command": [],
|
|
227
|
+
"inherited": true,
|
|
228
|
+
"name": "proofwidgets",
|
|
229
|
+
"requested_revision": "v0.0.99",
|
|
230
|
+
"revision": "a84b3e2475d5c5ab979567b1ad8aea21b764bcf8",
|
|
231
|
+
"root_module": null,
|
|
232
|
+
"source": "git",
|
|
233
|
+
"source_id": "source_25d2a88210f202e2624693750d9bbfba88d9012ec3a95576f25bdf49cb50ca85",
|
|
234
|
+
"subdir": null,
|
|
235
|
+
"tree_hash": "e0e2c368464f34b36f0db3901ce3c8ab4a1b8a40",
|
|
236
|
+
"url": "https://github.com/leanprover-community/ProofWidgets4"
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"root_lakefile": "name = \"lean_runtime_environment\"\nversion = \"0.0.0\"\ndefaultTargets = [\"LeanRuntimeEnvironment\"]\n\n[[require]]\nname = \"mathlib\"\ngit = \"https://github.com/leanprover-community/mathlib4.git\"\nrev = \"c5ea00351c28e24afc9f0f84379aa41082b1188f\"\n\n[[lean_lib]]\nname = \"LeanRuntimeEnvironment\"\n",
|
|
240
|
+
"root_module": "import Mathlib\n\n/- Generated by Lean Runtime. -/\n",
|
|
241
|
+
"schema": "lean-runtime-environment-lock/1",
|
|
242
|
+
"spec_digest": "spec_eba7ce427693583a568fd4a84c8678a604e3d2db44939614971e1a2a988bb241",
|
|
243
|
+
"toolchain": "leanprover/lean4:v4.30.0"
|
|
244
|
+
}
|