tangled
alpha
login
or
join now
anil.recoil.org
/
aoah-opam-repo
0
fork
atom
The opam repository for my Advent of Agentic Humps 2025
0
fork
atom
overview
issues
pulls
pipelines
more
anil.recoil.org
1 month ago
7c9abe63
0b08c325
0/1
build.yml
failed
2m 46s
+54
2 changed files
expand all
collapse all
unified
split
packages
arod
arod.dev
opam
typesense
typesense.dev
opam
+48
packages/arod/arod.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "Webserver for Bushel content"
3
3
+
description: """
4
4
+
Arod is a tiny_httpd-based webserver that serves Bushel content
5
5
+
(notes, papers, projects, ideas, videos) as a website. It uses
6
6
+
TOML configuration for easy deployment and includes support for
7
7
+
responsive images, syntax highlighting, and feeds."""
8
8
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
9
9
+
authors: ["Anil Madhavapeddy <anil@recoil.org>"]
10
10
+
license: "ISC"
11
11
+
depends: [
12
12
+
"dune" {>= "3.18"}
13
13
+
"ocaml" {>= "5.2"}
14
14
+
"bushel" {>= "0.1"}
15
15
+
"tiny_httpd" {>= "0.17"}
16
16
+
"htmlit" {>= "0.1"}
17
17
+
"cmarkit" {>= "0.3"}
18
18
+
"uri" {>= "4.4"}
19
19
+
"ptime" {>= "1.2"}
20
20
+
"fmt" {>= "0.9"}
21
21
+
"tomlt" {>= "0.1"}
22
22
+
"eio" {>= "1.2"}
23
23
+
"eio_main"
24
24
+
"cmdliner"
25
25
+
"logs"
26
26
+
"unix"
27
27
+
"odoc" {with-doc}
28
28
+
]
29
29
+
build: [
30
30
+
["dune" "subst"] {dev}
31
31
+
[
32
32
+
"dune"
33
33
+
"build"
34
34
+
"-p"
35
35
+
name
36
36
+
"-j"
37
37
+
jobs
38
38
+
"@install"
39
39
+
"@runtest" {with-test}
40
40
+
"@doc" {with-doc}
41
41
+
]
42
42
+
]
43
43
+
x-maintenance-intent: ["(latest)"]
44
44
+
45
45
+
dev-repo: "git+https://tangled.org/anil.recoil.org/arod"
46
46
+
url {
47
47
+
src: "git+https://tangled.org/anil.recoil.org/arod#main"
48
48
+
}
+6
packages/typesense/typesense.dev/opam
reviewed
···
10
10
depends: [
11
11
"dune" {>= "3.20"}
12
12
"ocaml" {>= "5.1.0"}
13
13
+
"openapi" {>= "0.4.0"}
13
14
"eio" {>= "1.2"}
15
15
+
"eio_main" {>= "1.2"}
14
16
"requests" {>= "0.3.1"}
15
17
"uri" {>= "4.4.0"}
16
18
"jsont" {>= "0.2.0"}
17
19
"bytesrw"
20
20
+
"ptime" {>= "1.0.0"}
21
21
+
"ptime-clock-os"
22
22
+
"cmdliner" {>= "1.3.0"}
23
23
+
"fmt" {>= "0.9.0"}
18
24
"logs" {>= "0.7.0"}
19
25
"odoc" {with-doc}
20
26
"alcotest" {with-test}