Upgrade project dependencies

Commit
335ea40e77cb7d61bda780702db6808f68bc14ee
Author
Codex AI Agent <codex-ai@openai.invalid>
Author date
Committer
Codex AI Agent <codex-ai@openai.invalid>
Committer date
Changed files
.ocamlformat
index d65dc372..93464b3c 100644..100644
@@ -1,2 +1,2 @@
1 1 profile = default
2 Removed: version = 0.27.0
2 Added: version = 0.29.0
AGENTS.org
index b47c27a8..103ad533 100644..100644
@@ -48,6 +48,8 @@
48 48
49 49 - The project code SHALL be formatted using the =.ocamlformat= config
50 50 file located at the project root.
51 Added: - Before committing code, agents SHALL run =dune fmt= and ensure that
52 Added: it completes successfully.
51 53
52 54 ** Version control system
53 55
dune-project
index 1f2e93d0..9dba278b 100644..100644
@@ -1,4 +1,4 @@
1 Removed: (lang dune 3.16)
1 Added: (lang dune 3.24)
2 2
3 3 (name ogit)
4 4
@@ -17,13 +17,13 @@
17 17 (synopsis "Mobile-friendly replacement for cgit")
18 18 (description "A longer description")
19 19 (depends
20 Removed: ocaml
21 Removed: dune
22 Removed: dream
23 Removed: dream-html
24 Removed: git
25 Removed: git-unix
26 Removed: toml)
20 Added: (ocaml (= 5.2.1))
21 Added: (dream (>= 1.0.0~alpha8))
22 Added: (dream-html (>= 3.11.2))
23 Added: (git (>= 3.18.0))
24 Added: (git-unix (>= 3.18.0))
25 Added: (ocamlformat (and :with-dev-setup (= 0.29.0)))
26 Added: (toml (>= 7.1.0)))
27 27 (tags
28 28 (git "web interface")))
29 29
ogit.opam
index c955db2c..f929ae5d 100644..100644
@@ -8,13 +8,14 @@
8 8 tags: ["git" "web interface"]
9 9 doc: "https://url/to/documentation"
10 10 depends: [
11 Removed: "ocaml"
12 Removed: "dune" {>= "3.16"}
13 Removed: "dream"
14 Removed: "dream-html"
15 Removed: "git"
16 Removed: "git-unix"
17 Removed: "toml"
11 Added: "dune" {>= "3.24"}
12 Added: "ocaml" {= "5.2.1"}
13 Added: "dream" {>= "1.0.0~alpha8"}
14 Added: "dream-html" {>= "3.11.2"}
15 Added: "git" {>= "3.18.0"}
16 Added: "git-unix" {>= "3.18.0"}
17 Added: "ocamlformat" {with-dev-setup & = "0.29.0"}
18 Added: "toml" {>= "7.1.0"}
18 19 "odoc" {with-doc}
19 20 ]
20 21 build: [
@@ -31,3 +32,4 @@
31 32 "@doc" {with-doc}
32 33 ]
33 34 ]
35 Added: x-maintenance-intent: ["(latest)"]