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"}
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.3.0.tar.gz"
34 checksum: [
35 "md5=a20e2d8408a96e76f10349b9a4f3ac88"
36 "sha512=ca7b54ae412d5a95c66843bdec0ca5436216e55052fba463d29e7a813ba5b9b1af0e54024b95baccb6c75dd0c42cb74c3e0c8aa5a52abb8d71b344cb2d171054"
37 ]
38}