this repo has no description
1opam-version: "2.0" 2synopsis: "A lock-free thread-safe integer keyed hash table" 3description: 4 "A minimalist lock-free thread-safe integer keyed hash table with zero synchronization overhead on lookups designed for associating thread specific state with threads within a domain." 5maintainer: ["Vesa Karvonen <vesa.a.j.k@gmail.com>"] 6authors: ["Vesa Karvonen <vesa.a.j.k@gmail.com>"] 7license: "ISC" 8homepage: "https://github.com/ocaml-multicore/thread-table" 9bug-reports: "https://github.com/ocaml-multicore/thread-table/issues" 10depends: [ 11 "dune" {>= "3.3"} 12 "ocaml" {>= "4.08"} 13 "alcotest" {>= "1.7.0" & with-test} 14 "odoc" {with-doc} 15] 16build: [ 17 ["dune" "subst"] {dev} 18 [ 19 "dune" 20 "build" 21 "-p" 22 name 23 "-j" 24 jobs 25 "@install" 26 "@runtest" {with-test} 27 "@doc" {with-doc} 28 ] 29] 30dev-repo: "git+https://github.com/ocaml-multicore/thread-table.git" 31url { 32 src: 33 "https://github.com/ocaml-multicore/thread-table/releases/download/1.0.0/thread-table-1.0.0.tbz" 34 checksum: [ 35 "sha256=a48cd88463597df9442c4baa69ccc06091ca77ba71e438d3609fbae0f3b81ddd" 36 "sha512=f857cec49a59cba206b8cc2c580f8c5252c95c7676e81b4c5326d07fc6a7da592785cf011c91d4e6f39f8c5766e280f559c58e02a5077d472577784d646cc2e5" 37 ] 38} 39x-commit-hash: "7a31ebaad645cd8e99e0742d21b61d3014dbe265"