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
2 months ago
5d45f0ea
bedecff4
0/1
build.yml
failed
3m 44s
+81
2 changed files
expand all
collapse all
unified
split
packages
cbort
cbort.dev
opam
mqtte
mqtte.dev
opam
+38
packages/cbort/cbort.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "Native CBOR codec with type-safe combinators"
3
3
+
description: """
4
4
+
Type-safe CBOR (RFC 8949) encoding and decoding using a combinator-based
5
5
+
approach. Define codecs once and use them for both encoding and decoding
6
6
+
OCaml values to and from CBOR binary format."""
7
7
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
8
8
+
authors: ["Anil Madhavapeddy"]
9
9
+
license: "ISC"
10
10
+
homepage: "https://tangled.org/@anil.recoil.org/ocaml-cbort"
11
11
+
bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-cbort/issues"
12
12
+
dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git"
13
13
+
depends: [
14
14
+
"dune" {>= "3.20"}
15
15
+
"ocaml" {>= "5.1"}
16
16
+
"bytesrw" {>= "0.2"}
17
17
+
"zarith" {>= "1.12"}
18
18
+
"odoc" {with-doc}
19
19
+
"crowbar" {>= "0.2" & with-test}
20
20
+
]
21
21
+
build: [
22
22
+
["dune" "subst"] {dev}
23
23
+
[
24
24
+
"dune"
25
25
+
"build"
26
26
+
"-p"
27
27
+
name
28
28
+
"-j"
29
29
+
jobs
30
30
+
"@install"
31
31
+
"@runtest" {with-test}
32
32
+
"@doc" {with-doc}
33
33
+
]
34
34
+
]
35
35
+
url {
36
36
+
src: "git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main"
37
37
+
}
38
38
+
x-maintenance-intent: ["(latest)"]
+43
packages/mqtte/mqtte.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "MQTT protocol library for OCaml"
3
3
+
description: "An MQTT v3.1.1 and v5.0 protocol library with Eio-based client"
4
4
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
5
5
+
authors: ["Anil Madhavapeddy"]
6
6
+
license: "ISC"
7
7
+
homepage: "https://tangled.org/@anil.recoil.org/ocaml-mqtte"
8
8
+
bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-mqtte/issues"
9
9
+
dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git"
10
10
+
depends: [
11
11
+
"dune" {>= "3.20"}
12
12
+
"ocaml" {>= "5.1"}
13
13
+
"eio" {>= "1.0"}
14
14
+
"eio_main" {>= "1.0"}
15
15
+
"bytesrw" {>= "0.1"}
16
16
+
"bytesrw-eio" {>= "0.1"}
17
17
+
"conpool"
18
18
+
"ca-certs"
19
19
+
"cmdliner" {>= "1.2"}
20
20
+
"tls"
21
21
+
"logs" {>= "0.7"}
22
22
+
"fmt" {>= "0.9"}
23
23
+
"alcotest" {with-test}
24
24
+
"odoc" {with-doc}
25
25
+
]
26
26
+
build: [
27
27
+
["dune" "subst"] {dev}
28
28
+
[
29
29
+
"dune"
30
30
+
"build"
31
31
+
"-p"
32
32
+
name
33
33
+
"-j"
34
34
+
jobs
35
35
+
"@install"
36
36
+
"@runtest" {with-test}
37
37
+
"@doc" {with-doc}
38
38
+
]
39
39
+
]
40
40
+
url {
41
41
+
src: "git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main"
42
42
+
}
43
43
+
x-maintenance-intent: ["(latest)"]