mirror of
https://github.com/c-cube/iter.git
synced 2025-12-06 03:05:29 -05:00
29 lines
825 B
Text
29 lines
825 B
Text
opam-version: "2.0"
|
|
name: "sequence"
|
|
version: "1.1"
|
|
author: "Simon Cruanes"
|
|
maintainer: "simon.cruanes.2007@m4x.org"
|
|
license: "BSD-2-clauses"
|
|
synopsis: "Simple sequence abstract datatype, intended to iterate efficiently
|
|
on collections while performing some transformations"
|
|
build: [
|
|
["dune" "build" "@install" "-p" name "-j" jobs]
|
|
["dune" "build" "@doc" "-p" name] {with-doc}
|
|
["dune" "runtest" "-p" name] {with-test}
|
|
]
|
|
depends: [
|
|
"base-bytes"
|
|
"result"
|
|
"dune" {build}
|
|
"qcheck" {with-test}
|
|
"qtest" {with-test}
|
|
"odoc" {with-doc}
|
|
]
|
|
tags: [ "sequence" "iterator" "iter" "fold" ]
|
|
homepage: "https://github.com/c-cube/sequence/"
|
|
depopts: [
|
|
"base-bigarray"
|
|
]
|
|
doc: "https://c-cube.github.io/sequence/"
|
|
bug-reports: "https://github.com/c-cube/sequence/issues"
|
|
dev-repo: "git+https://github.com/c-cube/sequence.git"
|