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