this repo has no description
1opam-version: "2.0" 2synopsis: "ActivityPub server in OCaml" 3description: 4 "Activity pub server, handling client to server and server to server protocols" 5maintainer: "zoggy@bat8.org" 6authors: "Zoggy <zoggy@bat8.org>" 7license: "LGPL-3.0-only" 8homepage: "https://zoggy.frama.io/activitypub/" 9doc: "https://zoggy.frama.io/activitypub/" 10bug-reports: "https://framagit.org/zoggy/activitypub/issues" 11depends: [ 12 "dune" {>= "3.7"} 13 "ocaml" {>= "5.2.0"} 14 "activitypub" {= version} 15 "lru_cache" {>= "0.4.0"} 16 "webmachine" {>= "0.7.0"} 17 "xtmpl" {>= "0.19.0" & < "1.0.0"} 18 "xtmpl_ppx" {>= "0.19.0" & < "1.0.0"} 19 "odoc" {with-doc} 20] 21available: os != "macos" 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35] 36dev-repo: "git+https://framagit.org/zoggy/activitypub.git" 37url { 38 src: 39 "https://zoggy.frama.io/activitypub/releases/ocaml-activitypub-0.1.0.tar.bz2" 40 checksum: [ 41 "md5=332e6cab89ed63fda379aba37e00c40b" 42 "sha512=b6e5fe4948fdbe1d63227adc834c783821b609691c8db24438a8f76c5f6a2c60d1ecbd385baf1029901225abe2031d9aa994a0ed0321ea8082b3281e35552bb0" 43 ] 44}