-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathlambda-runtime.opam
More file actions
28 lines (28 loc) · 814 Bytes
/
lambda-runtime.opam
File metadata and controls
28 lines (28 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
opam-version: "2.0"
maintainer: "Antonio Nuno Monteiro <anmonteiro@gmail.com>"
authors: [ "Antonio Nuno Monteiro <anmonteiro@gmail.com>" ]
license: "BSD-3-clause"
homepage: "https://github.com/anmonteiro/aws-lambda-ocaml-runtime"
bug-reports: "https://github.com/anmonteiro/aws-lambda-ocaml-runtime/issues"
dev-repo: "git+https://github.com/anmonteiro/aws-lambda-ocaml-runtime.git"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "1.7"}
"result"
"yojson" {>= "1.6.0" & < "2.0.0"}
"ppx_deriving_yojson"
"piaf"
"eio_main"
"uri"
"logs"
"alcotest" {with-test}
]
synopsis:
"A custom runtime for AWS Lambda written in OCaml"
description: """
lambda-runtime is a runtime for AWS Lambda that makes it easy to run AWS Lambda
Functions written in OCaml.
"""