-
Notifications
You must be signed in to change notification settings - Fork 1
/
carton.opam
49 lines (49 loc) · 1.46 KB
/
carton.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
opam-version: "2.0"
name: "carton"
synopsis: "Implementation of PACKv2 file in OCaml"
description: """\
Carton is an implementation of the PACKv2 file
in OCaml. PACKv2 file is used by Git to store Git objects.
Carton is more abstracted when it can store any objects."""
maintainer: "Romain Calascibetta <[email protected]>"
authors: "Romain Calascibetta <[email protected]>"
license: "MIT"
homepage: "https://git.robur.coop/robur/carton"
doc: "https://robur-coop.github.io/carton/"
bug-reports: "https://git.robur.coop/robur/carton/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.8.0"}
"ke" {>= "0.6"}
"duff" {>= "0.5"}
"decompress" {>= "1.4.3"}
"cstruct" {>= "6.1.0"}
"optint" {>= "0.0.4"}
"bigstringaf" {>= "0.9.0"}
"checkseum" {>= "0.3.3"}
"logs"
"cmdliner" {>= "1.1.0"}
"hxd" {>= "0.3.2"}
"psq" {>= "0.2.0"}
"fmt" {>= "0.8.9"}
"rresult" {with-test & >= "0.7.0"}
"fpath"
"base64" {with-test & >= "3.0.0"}
"bos"
"digestif" {>= "1.1.2"}
"base-unix" {with-test}
"base-threads" {with-test}
"alcotest" {with-test}
"crowbar" {with-test & >= "0.2.1"}
"alcotest-lwt" {>= "1.2.3" & with-test}
"lwt" {>= "5.3.0" & with-test}
"mirage-flow" {>= "2.0.1" & with-test}
"mtime" {>= "1.0.0" & with-test}
]
conflicts: [ "result" {< "1.5"} ]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/robur-coop/carton.git"