this repo has no description
1opam-version: "2.0" 2synopsis: "Test web UI for OCurrent" 3description: """\ 4OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 6This package provides a basic web UI for service administrators. 7It shows the current pipeline visually and allows viewing job 8logs and configuring the log analyser.""" 9maintainer: "Mark Elvers <mark.elvers@tunbury.org>" 10authors: [ 11 "Thomas Leonard <talex5@gmail.com>" 12 "Antonin Décimo <antonin@tarides.com>" 13 "Tim McGilchrist <timmcgil@gmail.com>" 14 "Craig Ferguson <me@craigfe.io>" 15 "Etienne MARAIS <etienne@maiste.fr>" 16 "Anil Madhavapeddy <anil@recoil.org>" 17 "David Allsopp <david.allsopp@metastack.com>" 18 "Ewan Mellor <ewan@tarides.com>" 19 "Kate <kit.ty.kate@disroot.org>" 20 "Mark Elvers <mark.elvers@tunbury.org>" 21 "Puneeth Chaganti <punchagan@muse-amuse.in>" 22 "Lucas Pluvinage <lucas@tarides.com>" 23 "Navin Keswani <navin@novemberkilo.com>" 24 "Thomas Gazagnaire <thomas@gazagnaire.org>" 25 "Patrick Ferris <patrick@sirref.org>" 26 "Arthur Wendling <art.wendling@gmail.com>" 27 "Anurag Soni <anurag@sonianurag.com>" 28 "Ambre Austen Suhamy <ambre@tarides.com>" 29 "Ben Andrew <benmandrew@gmail.com>" 30 "Gargi Sharma <gs051095@gmail.com>" 31 "Jonathan Coates <git@squiddev.cc>" 32 "Jules Aguillon <juloo.dsi@gmail.com>" 33 "Magnus Skjegstad <magnus@skjegstad.com>" 34 "Shon Feder <shon.feder@gmail.com>" 35 "smolck <46855713+smolck@users.noreply.github.com>" 36 "tatchi <corentin.leruth@gmail.com>" 37] 38license: "Apache-2.0" 39homepage: "https://github.com/ocurrent/ocurrent" 40doc: "https://ocurrent.github.io/ocurrent/" 41bug-reports: "https://github.com/ocurrent/ocurrent/issues" 42depends: [ 43 "dune" {>= "3.3"} 44 "crunch" {build & >= "3.3.0"} 45 "current" {= version} 46 "ocaml" {>= "4.12.0"} 47 "ansi" {>= "0.5.0"} 48 "astring" {>= "0.8.5"} 49 "base64" 50 "bos" 51 "cmdliner" {>= "1.1.0"} 52 "cohttp-lwt-unix" {>= "6.0.0"} 53 "conduit-lwt-unix" {>= "2.2.2"} 54 "conf-graphviz" 55 "cstruct" {>= "5.2.0"} 56 "csv" {>= "2.4"} 57 "fmt" {>= "0.8.9"} 58 "fpath" {>= "0.7.3"} 59 "logs" {>= "0.7.0"} 60 "lwt" {>= "5.7"} 61 "mirage-crypto" {>= "0.8.7" & < "1.0.0"} 62 "mirage-crypto-rng" {>= "0.11.0" & < "1.0.0"} 63 "mirage-crypto-rng-lwt" {>= "0.11.0" & < "1.0.0"} 64 "multipart_form-lwt" {>= "0.4.0"} 65 "ppx_deriving" {>= "5.1"} 66 "ppx_deriving_yojson" {>= "3.5.1"} 67 "ppx_sexp_conv" {>= "v0.14.1"} 68 "prometheus" {>= "0.7"} 69 "prometheus-app" {>= "1.2"} 70 "re" {>= "1.9.0"} 71 "result" {>= "1.5"} 72 "routes" {>= "2.0.0"} 73 "session" 74 "session-cohttp-lwt" 75 "sexplib" {>= "v0.14.0"} 76 "sqlite3" {>= "5.0.2"} 77 "tyxml" {>= "4.6.0"} 78 "uri" {>= "4.0.0"} 79 "yojson" {>= "1.7.0"} 80 "odoc" {with-doc} 81] 82build: [ 83 ["dune" "subst"] {dev} 84 [ 85 "dune" 86 "build" 87 "-p" 88 name 89 "-j" 90 jobs 91 "@install" 92 "@runtest" {with-test} 93 "@doc" {with-doc} 94 ] 95] 96dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 97url { 98 src: 99 "https://github.com/ocurrent/ocurrent/releases/download/v0.7.0/ocurrent-0.7.0.tbz" 100 checksum: [ 101 "md5=8377008ef5ad00fdf74681c6d07e5d23" 102 "sha512=2948497aef5dde1228adbd1c27f4d5dff59d66393774a69bf2c8078a47c85b82320a103450802ed62bc81cebd9e7354557adf2d471553040a983f53e4f43d5ef" 103 ] 104} 105x-maintenance-intent: ["(latest)"]