this repo has no description
1opam-version: "2.0" 2maintainer: "jun.furuse@gmail.com" 3authors: "Jun Furuse" 4homepage: "https://gitlab.com/camlspotter/unmagic/" 5bug-reports: 6 "https://gitlab.com/camlspotter/unmagic/-/issues" 7dev-repo: "git+https://gitlab.com/camlspotter/unmagic" 8build: ["jbuilder" "build" "-p" name "-j" jobs] 9depends: [ 10 "ocaml" {>= "4.06.0"} 11 "jbuilder" {>= "1.0+beta7"} 12 "spotlib" 13 "typerep" {>= "v0.10.0"} 14 "ppx_typerep_conv" 15 "ppx_deriving" 16 "ocaml-migrate-parsetree" {< "2.0.0"} 17] 18synopsis: "Runtime tag-checking of marshaled ocaml data" 19description: """ 20Unmagic is a small library to runtime tag-check Obj.t values for type-secure 21Obj.magic, input_value, Marshal.from_channel. It uses typerep to give 22the target type, and follows the same limitations of it.""" 23url { 24 src: 25 "https://gitlab.com/camlspotter/unmagic/-/archive/1.0.4/unmagic-1.0.4.tar.bz2" 26 checksum: [ 27 "sha256=365579df41ff676f949063480f9d9a57477ac8158b7c2eaec4387990d98bdc79" 28 "md5=bf81da1b8d3048edd5e6d5e25218a4bc" 29 ] 30}