this repo has no description
1opam-version: "2.0" 2synopsis: "The Stream and Genlex libraries for use with Camlp4 and Camlp5" 3description: """ 4 5This package provides two library modules: 6- Stream: imperative streams, with in-place update and memoization 7 of the latest element produced. 8- Genlex: a small parameterized lexical analyzer producing streams 9 of tokens from streams of characters. 10 11The two modules are designed for use with Camlp4 and Camlp5: 12- The stream patterns and stream expressions of Camlp4/Camlp5 consume 13 and produce data of type 'a Stream.t. 14- The Genlex tokenizer can be used as a simple lexical analyzer for 15 Camlp4/Camlp5-generated parsers. 16 17The Stream module can also be used by hand-written recursive-descent 18parsers, but is not very convenient for this purpose. 19 20The Stream and Genlex modules have been part of the OCaml standard library 21for a long time, and have been distributed as part of the core OCaml system. 22They will be removed from the OCaml standard library at some future point, 23but will be maintained and distributed separately in this camlpstreams package. 24""" 25maintainer: [ 26 "Florian Angeletti <florian.angeletti@inria.fr>" 27 "Xavier Leroy <xavier.leroy@college-de-france.fr>" 28] 29authors: ["Daniel de Rauglaudre" "Xavier Leroy"] 30homepage: "https://github.com/ocaml/camlp-streams" 31bug-reports: "https://github.com/ocaml/camlp-streams/issues" 32license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 33depends: [ 34 "dune" {>= "2.5"} 35 "ocaml" {>= "5.0"} 36] 37build: [ 38 ["dune" "subst"] {dev} 39 [ 40 "dune" 41 "build" 42 "-p" 43 name 44 "-j" 45 jobs 46 "@install" 47 "@runtest" {with-test} 48 "@doc" {with-doc} 49 ] 50] 51dev-repo: "git+https://github.com/ocaml/camlp-streams.git" 52url { 53 src: "https://github.com/ocaml/camlp-streams/archive/refs/tags/v5.0.tar.gz" 54 checksum: [ 55 "md5=305d8eaf9cebaf137a8a63770f0ea162" 56 "sha512=f42e2f5e5ca353b3d647cd7e97a278c167c2d1abd185a634f155965cec29e35d9be7ce940b4c205b0577d7e9b6f714580bfd2e2fd79f1b1b461bc3fb96d26d36" 57 ] 58}