M hll.conf +3 -1
@@ 13,5 13,7 @@ url_protocol = "http"
build_deps = ["merlin-of-pds"]
+available = "ocaml-version >= \"4.03\""
+
[deps_map]
-ppx_deriving = ["ppx_deriving.show", "ppx_deriving.eq"]
No newline at end of file
+ppx_deriving = ["ppx_deriving.show", "ppx_deriving.eq"]
M pds.conf +1 -1
@@ 7,7 7,7 @@ extra_compiler_opts = "-g -strict-sequen
[src.snabela]
install = true
extra_ocamldep_opts = "-package sedlex"
-deps = [ "result", "process", "containers", "sedlex", "ppx_deriving", "ppx_deriving.show", "ppx_deriving.eq" ]
+deps = [ "process", "containers", "sedlex", "ppx_deriving", "ppx_deriving.show", "ppx_deriving.eq" ]
[src.snabela_cli]
install = true
M src/snabela/snabela.ml +0 -2
@@ 1,5 1,3 @@
-open Result
-
module Kv = struct
module Map = CCMap.Make(String)
M src/snabela/snabela.mli +0 -2
@@ 6,8 6,6 @@
Convenience function are provided for constructing a value of type [t] as
well as pretty printing. *)
-open Result
-
module Kv : sig
module Map : CCMap.S with type key = string
M src/snabela/snabela_lexer.ml +0 -2
@@ 1,5 1,3 @@
-open Result
-
module Token = struct
type token =
| Escaped_at
M src/snabela_cli/snabela_cli.ml +0 -2
@@ 1,5 1,3 @@
-open Result
-
module SMap = CCMap.Make(String)
module Cmdline = struct