The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove support OCaml < 4.07

Fabian d132283d 3713be7c

+4 -10
+1 -1
vendor/opam/base64/base64.opam
··· 15 15 representation. It is specified in RFC 4648. 16 16 """ 17 17 depends: [ 18 - "ocaml" {>= "4.03.0"} 18 + "ocaml" {>= "4.07.0"} 19 19 "dune" {>= "2.3"} 20 20 "fmt" {with-test & >= "0.8.7"} 21 21 "bos" {with-test}
+2 -1
vendor/opam/base64/src/base64.ml
··· 32 32 33 33 let unsafe_set_uint8 t off v = Bytes.unsafe_set t off (Char.chr v) 34 34 35 - let unsafe_set_uint16 = Unsafe.unsafe_set_uint16 35 + external unsafe_set_uint16 : bytes -> int -> int -> unit = "%caml_bytes_set16u" 36 + [@@noalloc] 36 37 37 38 external unsafe_get_uint16 : string -> int -> int = "%caml_string_get16u" 38 39 [@@noalloc]
+1 -4
vendor/opam/base64/src/dune
··· 1 1 (library 2 2 (name base64) 3 - (modules unsafe base64) 3 + (modules base64) 4 4 (public_name base64)) 5 - 6 - (rule 7 - (copy %{read:../config/which-unsafe-file} unsafe.ml)) 8 5 9 6 (library 10 7 (name base64_rfc2045)
-2
vendor/opam/base64/src/unsafe_pre407.ml
··· 1 - external unsafe_set_uint16 : bytes -> int -> int -> unit = "%caml_string_set16u" 2 - [@@noalloc]
-2
vendor/opam/base64/src/unsafe_stable.ml
··· 1 - external unsafe_set_uint16 : bytes -> int -> int -> unit = "%caml_bytes_set16u" 2 - [@@noalloc]