this repo has no description
1opam-version: "2.0" 2synopsis: "Fast, safe mutable dynamic arrays" 3description: 4 "This library provides efficient dynamic arrays with Rust-like mutability permissions." 5maintainer: ["alxi.2001@gmail.com"] 6authors: ["Alex Ionescu"] 7license: "MIT" 8homepage: "https://github.com/aionescu/vec" 9doc: "https://aionescu.github.io/vec/docs/vec/index.html" 10bug-reports: "https://github.com/aionescu/vec/issues" 11depends: [ 12 "dune" {>= "2.8" & >= "2.8"} 13 "ocaml" {>= "4.08.0"} 14 "odoc" {with-doc} 15 "ounit2" {with-test} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "@install" 27 "@runtest" {with-test} 28 "@doc" {with-doc} 29 ] 30] 31dev-repo: "git+https://github.com/aionescu/vec.git" 32url { 33 src: "https://github.com/aionescu/vec/archive/v0.2.0.tar.gz" 34 checksum: [ 35 "md5=164dfcc886cd450485010821b588b456" 36 "sha512=083bdfd37f61245c72c23965d7c0265aee103b2e9646e5fd7ed99579994fb52d356f8b4518560985bbda8729a972b906a7ca7f8516a36a1baa4a4d20204dd410" 37 ] 38}