blob: 2840017ed242c0e15118d9b371d5d2e122d9d26c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
(lang dune 3.11)
(name apbox)
(generate_opam_files true)
(authors "Marc Coquand")
(maintainers "Marc Coquand")
(license AGPL-3.0-only)
(documentation https://url/to/documentation)
(package
(name apbox)
(synopsis "A minimal Activitypub C2S and S2S server")
(description "A longer description")
(depends ocaml dune cohttp-eio zmq)
(tags
(activitypub minimal server sqlite)))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|