forked from janestreet/virtual_dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
virtual_dom.opam
34 lines (34 loc) · 1 KB
/
virtual_dom.opam
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
29
30
31
32
33
34
opam-version: "2.0"
maintainer: "Jane Street developers"
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/janestreet/virtual_dom"
bug-reports: "https://github.com/janestreet/virtual_dom/issues"
dev-repo: "git+https://github.com/janestreet/virtual_dom.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/virtual_dom/index.html"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.14.0"}
"base"
"core"
"core_kernel"
"js_of_ocaml_patches"
"ppx_jane"
"stdio"
"base64" {>= "3.4.0"}
"dune" {>= "2.0.0"}
"gen_js_api" {>= "1.0.8"}
"js_of_ocaml" {>= "5.1.1"}
"js_of_ocaml-ppx" {>= "5.1.1"}
"lambdasoup" {>= "0.6.3"}
"tyxml" {>= "4.3.0"}
"uri" {>= "3.0.0"}
]
available: arch != "arm32" & arch != "x86_32"
synopsis: "OCaml bindings for the virtual-dom library"
description: "
The library itself may be found at
https://github.com/Matt-Esch/virtual-dom.
"