this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/bonsai" 5bug-reports: "https://github.com/janestreet/bonsai/issues" 6dev-repo: "git+https://github.com/janestreet/bonsai.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/bonsai/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.08.0"} 14 "async_kernel" {>= "v0.14" & < "v0.15"} 15 "core_kernel" {>= "v0.14" & < "v0.15"} 16 "incr_dom" {>= "v0.14" & < "v0.15"} 17 "incr_map" {>= "v0.14" & < "v0.15"} 18 "incremental" {>= "v0.14" & < "v0.15"} 19 "ppx_jane" {>= "v0.14" & < "v0.15"} 20 "ppx_pattern_bind" {>= "v0.14" & < "v0.15"} 21 "virtual_dom" {>= "v0.14" & < "v0.15"} 22 "dune" {>= "2.0.0"} 23] 24synopsis: "A library for building dynamic webapps, using Js_of_ocaml" 25description: " 26Bonsai is a library for building reusable UI components inside an 27Incremental-style UI framework such as Incr_dom. The API is broken 28up into roughly two modules: 29 30- Creating components 31- Combining components 32" 33url { 34 src: 35 "https://ocaml.janestreet.com/ocaml-core/v0.14/files/bonsai-v0.14.0.tar.gz" 36 checksum: [ 37 "sha256=43f35d648644492d776bf2c7b86c8227e7793615b6a658432e95f8dccd3631f8" 38 "md5=b5e743dbfa64d0da5fd660f14cd0b549" 39 ] 40}