Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
image:
- 'mathcomp/mathcomp:2.2.0-coq-8.19'
- 'mathcomp/mathcomp:2.3.0-coq-8.20'
- 'mathcomp/mathcomp:2.4.0-rocq-prover-9.0'
- 'mathcomp/mathcomp-dev:rocq-prover-dev'
fail-fast: false
steps:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ that HTT implements Separation logic as a shallow embedding in Coq.
- License: [Apache-2.0](LICENSE)
- Compatible Coq versions: 8.19 or later
- Additional dependencies:
- [MathComp ssreflect 2.2-2.3](https://math-comp.github.io)
- [Hierarchy Builder 1.7.0 or later](https://github.com/math-comp/hierarchy-builder)
- [MathComp ssreflect 2.2 or later](https://math-comp.github.io)
- [MathComp algebra](https://math-comp.github.io)
- [MathComp fingroup](https://math-comp.github.io)
- [FCSL-PCM 2.1](https://github.com/imdea-software/fcsl-pcm)
Expand Down
4 changes: 2 additions & 2 deletions coq-htt-core.opam
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ variables). The connection reconciles dependent types with effects of state and
establishes Separation logic as a type theory for such effects. In implementation terms, it means
that HTT implements Separation logic as a shallow embedding in Coq."""

build: [make "-C" "htt" "-j%{jobs}%"]
install: [make "-C" "htt" "install"]
build: ["dune" "build" "-p" name "-j" jobs]
depends: [
"dune" {>= "3.6"}
"coq" { (>= "8.19" & < "9.1~") | (= "dev") }
"coq-hierarchy-builder" { (>= "1.7.0" & < "1.10~") | (= "dev") }
"coq-mathcomp-ssreflect" { (>= "2.2.0" & < "2.5~") | (= "dev") }
"coq-mathcomp-algebra"
"coq-mathcomp-fingroup"
Expand Down
12 changes: 10 additions & 2 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,23 @@ tested_coq_opam_versions:
repo: 'mathcomp/mathcomp'
- version: '2.3.0-coq-8.20'
repo: 'mathcomp/mathcomp'
- version: '2.4.0-rocq-prover-9.0'
repo: 'mathcomp/mathcomp'
- version: 'rocq-prover-dev'
repo: 'mathcomp/mathcomp-dev'


dependencies:
- opam:
name: coq-hierarchy-builder
version: '{ (>= "1.7.0" & < "1.10~") | (= "dev") }'
description: |-
[Hierarchy Builder 1.7.0 or later](https://github.com/math-comp/hierarchy-builder)
- opam:
name: coq-mathcomp-ssreflect
version: '{ (>= "2.2.0" & < "2.4~") | (= "dev") }'
version: '{ (>= "2.2.0" & < "2.5~") | (= "dev") }'
description: |-
[MathComp ssreflect 2.2-2.3](https://math-comp.github.io)
[MathComp ssreflect 2.2 or later](https://math-comp.github.io)
- opam:
name: coq-mathcomp-algebra
description: |-
Expand Down