mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
require ocaml 4.08, compat with containers 3.13
This commit is contained in:
parent
85c39d3642
commit
54077446ca
3 changed files with 3 additions and 1 deletions
|
|
@ -27,6 +27,7 @@
|
||||||
(and
|
(and
|
||||||
(>= 3.6)
|
(>= 3.6)
|
||||||
(< 4.0)))
|
(< 4.0)))
|
||||||
|
(ocaml (>= 4.08))
|
||||||
(iter
|
(iter
|
||||||
(>= 1.0))
|
(>= 1.0))
|
||||||
(trace (>= 0.3))
|
(trace (>= 0.3))
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ bug-reports: "https://github.com/c-cube/sidekick/issues/"
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {>= "2.0"}
|
"dune" {>= "2.0"}
|
||||||
"containers" {>= "3.6" & < "4.0"}
|
"containers" {>= "3.6" & < "4.0"}
|
||||||
|
"ocaml" {>= "4.08"}
|
||||||
"iter" {>= "1.0"}
|
"iter" {>= "1.0"}
|
||||||
"trace" {>= "0.3"}
|
"trace" {>= "0.3"}
|
||||||
"zarith" {with-test}
|
"zarith" {with-test}
|
||||||
|
|
|
||||||
|
|
@ -293,7 +293,7 @@ let () =
|
||||||
let exit_ n =
|
let exit_ n =
|
||||||
if Printexc.backtrace_status () then
|
if Printexc.backtrace_status () then
|
||||||
Format.fprintf Format.std_formatter "%s@." b;
|
Format.fprintf Format.std_formatter "%s@." b;
|
||||||
CCShims_.Stdlib.exit n
|
Stdlib.exit n
|
||||||
in
|
in
|
||||||
(match e with
|
(match e with
|
||||||
| Error.Error msg ->
|
| Error.Error msg ->
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue