diff options
| author | Sébastien Dailly <sebastien@dailly.me> | 2025-11-14 15:07:04 +0100 |
|---|---|---|
| committer | Sébastien Dailly <sebastien@dailly.me> | 2025-11-14 15:07:04 +0100 |
| commit | 778f4e0b649663b6ef838b2ee71b1df363b961d5 (patch) | |
| tree | e441a9236177cf48c967bdd4df27b552aa6a1283 | |
| parent | b094cfd8dd1baa2f271a8229d0dd682c7478f2e9 (diff) | |
Updated the project dependenciesmain
| -rwxr-xr-x | dune-project | 66 |
1 files changed, 49 insertions, 17 deletions
diff --git a/dune-project b/dune-project index 592ff77..1c1d66a 100755 --- a/dune-project +++ b/dune-project @@ -1,26 +1,58 @@ (lang dune 3.7) + (using menhir 2.0) (generate_opam_files true) + (implicit_transitive_deps false) + (authors "Sébastien Dailly") + (maintainers "Sébastien Dailly") (package - (name importer) - (depends - (ocaml (>= 5.1.0)) - (sqlite3 (>= 5.1.0)) - (SZXX (and (>= 2.1.0) (<= 4.0.0))) - (csv (>= 2.4)) - (csv-lwt (>= 2.4)) - (decoders (>= 1.0.0)) - (ounit (>= 2.2.6)) - (otoml (>= 1.0.1)) - (re (>= 1.10.4)) - (ppx_deriving (>= 5.2.1)) - (tsort (>= 2.1.0)) - (calendar (>= 3.0.0)) - ) - (allow_empty) -) + (name importer) + (depends + (fmt + (and + (>= 0.11.0) + :with-test)) + (alcotest + (and + (>= 1.9.1) + :with-test)) + (menhirLib + (>= 20250912)) + (lwt + (>= 5.9.2)) + (core + (>= v0.17.1)) + (base + (>= v0.17.3)) + (ocaml + (>= 5.1.0)) + (sqlite3 + (>= 5.1.0)) + (SZXX + (and + (>= 2.1.0) + (<= 4.0.0))) + (csv + (>= 2.4)) + (csv-lwt + (>= 2.4)) + (decoders + (>= 1.0.0)) + (ounit + (>= 2.2.6)) + (otoml + (>= 1.0.1)) + (re + (>= 1.10.4)) + (ppx_deriving + (>= 5.2.1)) + (tsort + (>= 2.1.0)) + (calendar + (>= 3.0.0))) + (allow_empty)) |
