this repo has no description
1opam-version: "2.0" 2synopsis: "Processor Topology & Affinity for ocaml" 3description: 4 "Exposes processor, CPU Topology and lets you pin the runtime to a set of CPUs." 5maintainer: ["Léo Andrès <contact@ndrs.fr>"] 6authors: ["Christiano Haesbaert"] 7license: "ISC" 8tags: [ 9 "processor" 10 "multicore" 11 "cpu" 12 "thread" 13 "core" 14 "package" 15 "socket" 16 "affinity" 17 "scheduler" 18 "domain" 19] 20homepage: "https://github.com/haesbaert/ocaml-processor" 21doc: "https://haesbaert.github.io/ocaml-processor" 22bug-reports: "https://github.com/haesbaert/ocaml-processor/issues" 23depends: [ 24 "ocaml" {>= "4.08"} 25 "dune" {>= "3.2"} 26 "odoc" {with-doc} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://github.com/haesbaert/ocaml-processor.git" 43url { 44 src: 45 "https://github.com/haesbaert/ocaml-processor/archive/refs/tags/0.2.tar.gz" 46 checksum: [ 47 "sha256=35df0b95a8d4b420feea0ec98bd3b83592884764a586643979098bdbf3fd5ba3" 48 "sha512=c9ae036fa90009352775d61d6ae7cfdbe9535677a59c0cab4a6ea6a26e63fc775d48606e7a0c55ba4486f42021b4979cd3eb5f68d9366d0cda8cb9067a531016" 49 ] 50} 51available: os-family != "windows" & arch != "arm32" & arch != "ppc64" & arch != "s390x" & arch != "x86_32"