File: dune-project

package info (click to toggle)
ocaml-thread-table 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 148 kB
  • sloc: ml: 202; sh: 59; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 670 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(lang dune 3.3)
(name thread-table)
(version 1.0.0)
(generate_opam_files true)
(source (github ocaml-multicore/thread-table))
(authors "Vesa Karvonen <vesa.a.j.k@gmail.com>")
(maintainers "Vesa Karvonen <vesa.a.j.k@gmail.com>")
(homepage "https://github.com/ocaml-multicore/thread-table")
(license "ISC")
(package (name thread-table)
 (synopsis "A lock-free thread-safe integer keyed hash table")
 (description "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.")
 (depends
  (ocaml (>= 4.08))
  (alcotest (and (>= 1.7.0) :with-test))))