upstream: https://github.com/mirage/ocaml-gpt
0
fork

Configure Feed

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

Rename mbr-format to mbr, fix uniboot build

- mbr: Rename package from mbr-format to mbr
- gpt: Update to use mbr instead of mbr-format
- uniboot: Fix Slice.of_bytes ~last parameter, add () for Vlog.setup

+3 -3
+1 -1
dune-project
··· 29 29 (bytesrw (>= 0.1)) 30 30 (uuidm (>= 0.9.7)) 31 31 (checkseum (>= 0.4.0)) 32 - (mbr-format (>= 2.0.0)) 32 + (mbr (>= 2.0.0)) 33 33 (alcotest :with-test) 34 34 (fmt :with-test) 35 35 (crowbar :with-test)))
+1 -1
gpt.opam
··· 18 18 "bytesrw" {>= "0.1"} 19 19 "uuidm" {>= "0.9.7"} 20 20 "checkseum" {>= "0.4.0"} 21 - "mbr-format" {>= "2.0.0"} 21 + "mbr" {>= "2.0.0"} 22 22 "alcotest" {with-test} 23 23 "fmt" {with-test} 24 24 "crowbar" {with-test}
+1 -1
lib/dune
··· 1 1 (library 2 2 (public_name gpt) 3 3 (name gpt) 4 - (libraries bytesrw uuidm checkseum mbr-format) 4 + (libraries bytesrw uuidm checkseum mbr) 5 5 (modules gpt))