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.4"} 13 "ocaml" {>= "4.08.0"} 14] 15build: [ 16 ["dune" "subst"] {dev} 17 [ 18 "dune" 19 "build" 20 "-p" 21 name 22 "-j" 23 jobs 24 "@install" 25 "@runtest" {with-test} 26 "@doc" {with-doc} 27 ] 28] 29dev-repo: "git+https://github.com/aionescu/vec.git" 30url { 31 src: "https://github.com/aionescu/vec/archive/v0.1.0.tar.gz" 32 checksum: [ 33 "md5=157959d653f09b034b539adb0ad3f233" 34 "sha512=84a9e8c103b14673ae13f5510c20c7550529d7a4a453ea62917d387bcb3e641868e99a4832517e855187dfeddc6f70ebb8298d75e0c8365bfb5016b94a070c1f" 35 ] 36}