update dependencies

This commit is contained in:
Mylloon 2024-01-26 15:44:11 +01:00
parent 77fb7b5dc6
commit ec233810d2
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
4 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1 # syntax=docker/dockerfile:1
FROM ocaml/opam:alpine-3.18-ocaml-4.14 AS builder FROM ocaml/opam:alpine-3.19-ocaml-5.2 AS builder
WORKDIR /usr/src/pusk WORKDIR /usr/src/pusk
COPY . . COPY . .

View file

@ -81,7 +81,7 @@ let handler data (signal : int) =
;; ;;
let () = let () =
let data = start (Gecko "0.33.0") in let data = start (Gecko "0.34.0") in
Sys.set_signal Sys.sigint (Sys.Signal_handle (handler (fst data))); Sys.set_signal Sys.sigint (Sys.Signal_handle (handler (fst data)));
(* Load env variables *) (* Load env variables *)
load_dotenv; load_dotenv;

View file

@ -1,4 +1,4 @@
(lang dune 3.7) (lang dune 3.13)
(name pusk) (name pusk)
@ -21,7 +21,7 @@
ocaml ocaml
dune dune
(cohttp-lwt-unix (cohttp-lwt-unix
(>= 5.1)) (>= 5.3))
(dotenv (dotenv
(>= 0.0)) (>= 0.0))
(twostep (twostep

View file

@ -8,8 +8,8 @@ license: "AGPL-3.0-or-later"
tags: ["api" "twitter"] tags: ["api" "twitter"]
depends: [ depends: [
"ocaml" "ocaml"
"dune" {>= "3.7"} "dune" {>= "3.13"}
"cohttp-lwt-unix" {>= "5.1"} "cohttp-lwt-unix" {>= "5.3"}
"dotenv" {>= "0.0"} "dotenv" {>= "0.0"}
"twostep" {>= "1.0"} "twostep" {>= "1.0"}
"odoc" {with-doc} "odoc" {with-doc}