this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/hardcaml_c" 5bug-reports: "https://github.com/janestreet/hardcaml_c/issues" 6dev-repo: "git+https://github.com/janestreet/hardcaml_c.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/hardcaml_c/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "5.1.0"} 14 "core" {>= "v0.17" & < "v0.18"} 15 "core_unix" {>= "v0.17" & < "v0.18"} 16 "hardcaml" {>= "v0.17" & < "v0.18"} 17 "ppx_hardcaml" {>= "v0.17" & < "v0.18"} 18 "ppx_jane" {>= "v0.17" & < "v0.18"} 19 "ctypes" {>= "0.18.0"} 20 "ctypes-foreign" 21 "dune" {>= "3.11.0"} 22] 23available: arch != "arm32" & arch != "x86_32" 24synopsis: "Hardcaml C Simulation Backend" 25description: " 26A fast C-based simulation backend for Hardcaml circuits. 27 28The library transparently compiles a Hardcaml Circuit to C code, which is in turn compiled 29and linked into the running executable. The generated simulation object can be used like 30any other cyclesim simulation. 31" 32url { 33src: "https://github.com/janestreet/hardcaml_c/archive/refs/tags/v0.17.0.tar.gz" 34checksum: "sha256=a7c11117b5dfe0fe95a6f7401b26fa6dfe1aa2df1233d0ac96525d7f3fa4acbb" 35}