this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/janestreet/string_dict"
5bug-reports: "https://github.com/janestreet/string_dict/issues"
6dev-repo: "git+https://github.com/janestreet/string_dict.git"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/string_dict/index.html"
8license: "MIT"
9build: [
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "5.1.0"}
14 "base" {>= "v0.17" & < "v0.18"}
15 "ppx_compare" {>= "v0.17" & < "v0.18"}
16 "ppx_hash" {>= "v0.17" & < "v0.18"}
17 "dune" {>= "3.11.0"}
18]
19available: arch != "arm32" & arch != "x86_32"
20synopsis: "Efficient static string dictionaries"
21description: "
22Efficient static string dictionaries.
23By static, we mean that new key-value pairs cannot be added after the
24dictionary is created.
25
26This uses the algorithm the OCaml compiler uses for pattern matching
27on strings.
28"
29url {
30src: "https://github.com/janestreet/string_dict/archive/refs/tags/v0.17.0.tar.gz"
31checksum: "sha256=2e57a96c382080f574d6a36c37f080d608d6cade027b7262edd90e09e5052fff"
32}