aboutsummaryrefslogtreecommitdiff
path: root/dune-project
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-11-14 15:35:40 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-11-14 15:35:40 +0100
commit5709ce369f815ca26d555a05e84cfd0b8dc311cf (patch)
tree919fdcfb0fc1d5b014a8328818ef581e72f196df /dune-project
parent4add06669bd9693b18c20aead8fe7697601bd69e (diff)
Updated the project dependencies
Diffstat (limited to 'dune-project')
-rwxr-xr-xdune-project156
1 files changed, 97 insertions, 59 deletions
diff --git a/dune-project b/dune-project
index 20e33c1..94f732f 100755
--- a/dune-project
+++ b/dune-project
@@ -1,71 +1,109 @@
(lang dune 2.7)
(generate_opam_files true)
+
(authors "Sébastien Dailly")
+
(maintainers "Sébastien Dailly")
-(package
- (name sript.it)
- (synopsis "Calligraphy app")
- (depends
- (ocaml (>= 4.10.0))
- (brr (>= 0.0.6))
- (note (>= 0.0.3))
- (gg (>= 0.9.3))
- )
- )
+(package
+ (name script.it)
+ (synopsis "Calligraphy app")
+ (depends
+ (ounit2
+ (and
+ (>= 2.2.7)
+ :with-test))
+ (ocaml
+ (>= 4.10.0))
+ (brr
+ (>= 0.0.6))
+ (note
+ (>= 0.0.3))
+ (gg
+ (>= 0.9.3))))
+
+(package
+ (name editor)
+ (synopsis "Text editor")
+ (depends
+ (ounit2
+ (and
+ (>= 2.2.7)
+ :with-test))
+ (ocaml
+ (>= 4.10.0))
+ (brr
+ (>= 0.0.6))
+ (note
+ (>= 0.0.3))))
-(package
- (name editor)
- (synopsis "Text editor")
- (depends
- (ocaml (>= 4.10.0))
- (brr (>= 0.0.6))
- (note (>= 0.0.3))
- )
- )
+(package
+ (name css)
+ (synopsis "CSS Merger")
+ (depends
+ (ounit2
+ (and
+ (>= 2.2.7)
+ :with-test))
+ (ocaml
+ (>= 4.10.0))
+ (brr
+ (>= 0.0.6))
+ (note
+ (>= 0.0.3))
+ (css-parser
+ (>= 0.2.4))))
-(package
- (name css)
- (synopsis "CSS Merger")
- (depends
- (ocaml (>= 4.10.0))
- (brr (>= 0.0.6))
- (note (>= 0.0.3))
- (css-parser (>= 0.2.4))
- )
- )
+(package
+ (name motus)
+ (synopsis "Motus solver")
+ (depends
+ (ounit2
+ (and
+ (>= 2.2.7)
+ :with-test))
+ (ocaml
+ (>= 4.10.0))
+ (brr
+ (>= 0.0.6))
+ (note
+ (>= 0.0.3))
+ (ppx_deriving
+ (>= 5.2.1))))
-(package
- (name motus)
- (synopsis "Motus solver")
- (depends
- (ocaml (>= 4.10.0))
- (brr (>= 0.0.6))
- (note (>= 0.0.3))
- (ppx_deriving (>= 5.2.1))
- )
- )
+(package
+ (name viz.js)
+ (synopsis "Graph viewer")
+ (depends
+ (ounit2
+ (and
+ (>= 2.2.7)
+ :with-test))
+ (ocaml
+ (>= 4.10.0))
+ (js_of_ocaml-lwt
+ (>= 3.8.0))))
-(package
- (name viz.js)
- (synopsis "Graph viewer")
- (depends
- (ocaml (>= 4.10.0))
- (js_of_ocaml-lwt (>= 3.8.0))
- )
- )
(using menhir 2.1)
-(package
- (name optim_aooo)
- (synopsis "aoo solver")
- (depends
- (ocaml (>= 4.10.0))
- (brr (>= 0.0.6))
- (note (>= 0.0.3))
- (ppx_deriving (>= 5.2.1))
- (zarith)
- (zarith_stubs_js)
- )
- )
+(package
+ (name optim_aooo)
+ (synopsis "aoo solver")
+ (depends
+ (ounit2
+ (and
+ (>= 2.2.7)
+ :with-test))
+ (ocaml
+ (>= 4.10.0))
+ (brr
+ (>= 0.0.6))
+ (note
+ (>= 0.0.3))
+ (ppx_deriving
+ (>= 5.2.1))
+ (zarith
+ (>= 1.13))
+ (zarith_stubs_js
+ (>= v0.16.1))))