this repo has no description
1opam-version: "2.0"
2maintainer: "KC Sivaramakrishnan <sk826@cl.cam.ac.uk>"
3authors: ["KC Sivaramakrishnan <sk826@cl.cam.ac.uk>"]
4homepage: "https://github.com/kayceesrk/mergeable-vector"
5doc: "http://kcsrk.info//mergeable-vector/doc"
6license: "ISC"
7dev-repo: "git+https://github.com/kayceesrk/mergeable-vector.git"
8bug-reports: "https://github.com/kayceesrk/mergeable-vector/issues"
9depends: [
10 "ocaml" {>= "4.01.0"}
11 "ocamlfind" {build}
12 "ocamlbuild" {build}
13 "topkg" {build}
14]
15build: [
16 "ocaml" "pkg/pkg.ml" "build"
17 "--pinned" "%{pinned}%" ]
18synopsis: "Mergeable vector based on operational transformation"
19description: """
20mergeable-vector is vector library with support for [3-way merges](https://en.wikipedia.org/wiki/Merge_(version_control)#Three-way_merge) based on [operational transformation](https://en.wikipedia.org/wiki/Operational_transformation). The library also provides diffing and patching arbitrary vectors. The diff is computed by [Wagner-Fischer algorithm](https://en.wikipedia.org/wiki/Wagner%E2%80%93Fischer_algorithm).
21
22mergeable-vector is distributed under the ISC license."""
23url {
24 src:
25 "https://github.com/kayceesrk/mergeable-vector/releases/download/0.1.0/mergeable-vector-0.1.0.tbz"
26 checksum: [
27 "sha256=142f043b241cdb70af5ba2b895fba96555476137abedcdad63387ac3ee850d77"
28 "md5=23452c339773960004f6d15d77e092d7"
29 ]
30}