this repo has no description
1opam-version: "2.0" 2synopsis: "Slack plugin for OCurrent" 3description: """\ 4OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 6This package provides primitives for interacting with Slack. 7It can post messages to slack channels.""" 8maintainer: "Mark Elvers <mark.elvers@tunbury.org>" 9authors: [ 10 "Thomas Leonard <talex5@gmail.com>" 11 "Antonin Décimo <antonin@tarides.com>" 12 "Tim McGilchrist <timmcgil@gmail.com>" 13 "Craig Ferguson <me@craigfe.io>" 14 "Etienne MARAIS <etienne@maiste.fr>" 15 "Anil Madhavapeddy <anil@recoil.org>" 16 "David Allsopp <david.allsopp@metastack.com>" 17 "Ewan Mellor <ewan@tarides.com>" 18 "Kate <kit.ty.kate@disroot.org>" 19 "Mark Elvers <mark.elvers@tunbury.org>" 20 "Puneeth Chaganti <punchagan@muse-amuse.in>" 21 "Lucas Pluvinage <lucas@tarides.com>" 22 "Navin Keswani <navin@novemberkilo.com>" 23 "Thomas Gazagnaire <thomas@gazagnaire.org>" 24 "Patrick Ferris <patrick@sirref.org>" 25 "Arthur Wendling <art.wendling@gmail.com>" 26 "Anurag Soni <anurag@sonianurag.com>" 27 "Ambre Austen Suhamy <ambre@tarides.com>" 28 "Ben Andrew <benmandrew@gmail.com>" 29 "Gargi Sharma <gs051095@gmail.com>" 30 "Jonathan Coates <git@squiddev.cc>" 31 "Jules Aguillon <juloo.dsi@gmail.com>" 32 "Magnus Skjegstad <magnus@skjegstad.com>" 33 "Shon Feder <shon.feder@gmail.com>" 34 "smolck <46855713+smolck@users.noreply.github.com>" 35 "tatchi <corentin.leruth@gmail.com>" 36] 37license: "Apache-2.0" 38homepage: "https://github.com/ocurrent/ocurrent" 39doc: "https://ocurrent.github.io/ocurrent/" 40bug-reports: "https://github.com/ocurrent/ocurrent/issues" 41depends: [ 42 "dune" {>= "3.3"} 43 "current" {= version} 44 "ocaml" {>= "4.12.0"} 45 "cohttp-lwt-unix" {>= "6.0.0"} 46 "fmt" {>= "0.8.9"} 47 "logs" {>= "0.7.0"} 48 "lwt" {>= "5.7"} 49 "tls-lwt" {>= "0.16.0"} 50 "uri" {>= "4.0.0"} 51 "yojson" 52 "odoc" {with-doc} 53] 54build: [ 55 ["dune" "subst"] {dev} 56 [ 57 "dune" 58 "build" 59 "-p" 60 name 61 "-j" 62 jobs 63 "@install" 64 "@runtest" {with-test} 65 "@doc" {with-doc} 66 ] 67] 68dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 69url { 70 src: 71 "https://github.com/ocurrent/ocurrent/releases/download/v0.7.0/ocurrent-0.7.0.tbz" 72 checksum: [ 73 "md5=8377008ef5ad00fdf74681c6d07e5d23" 74 "sha512=2948497aef5dde1228adbd1c27f4d5dff59d66393774a69bf2c8078a47c85b82320a103450802ed62bc81cebd9e7354557adf2d471553040a983f53e4f43d5ef" 75 ] 76} 77x-maintenance-intent: ["(latest)"]