Skip to content

Commit 896efbd

Browse files
committed
update dune-project file
1 parent 35bea85 commit 896efbd

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ opam install coq coq-interval
1919
```
2020
Run `make` to compile the proofs. We have tested compilation with Coq versions 8.10.1-8.16.1 and Interval versions 4.0.0-4.6.1.
2121

22-
To use this repository as a library, run `opam pin coq-euler htts://github.com/taorunz/euler.git`.
22+
To use this repository as a library, run `opam pin coq-euler https://github.com/taorunz/euler.git`.
2323
Then, to import files into your Coq project, use `Require Import euler.FILENAME`.
2424
Subsequent updates can be pulled using `opam install coq-euler`.

coq-euler.opam

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ description: """
66
Coq proof for the asymptotic upper bound of the
77
Euler Totient Function φ
88
"""
9+
maintainer: ["@taorunz"]
10+
authors: ["Runzhou Tao and Yuxiang Peng"]
11+
homepage: "https://github.com/taorunz/euler"
12+
bug-reports: "https://github.com/taorunz/euler/issues"
913
depends: [
1014
"dune" {>= "2.8"}
1115
"coq-interval" {>= "4.0.0"}
@@ -26,3 +30,4 @@ build: [
2630
"@doc" {with-doc}
2731
]
2832
]
33+
dev-repo: "git+https://github.com/taorunz/euler.git"

dune-project

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
(lang dune 2.8)
2+
(name coq-euler)
23
(version 1.0.0)
34
(using coq 0.2)
45

56
(generate_opam_files true)
67

8+
(authors "Runzhou Tao and Yuxiang Peng")
9+
(maintainers "@taorunz")
10+
(source (github taorunz/euler))
11+
712
(package
813
(name coq-euler)
914
(synopsis "Asymptotic lower bound of the Euler Totient Function")

0 commit comments

Comments
 (0)