stringCodepointSplitter/stringCodepointSplitter.opam

37 lines
915 B
Text
Raw Normal View History

2023-08-27 03:56:41 +08:00
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
2023-08-31 19:12:14 +08:00
version: "0.0.2"
2023-08-27 03:56:41 +08:00
synopsis:
"Split a string to a list of strings of a character by the unicode codepoint"
description: """
Split a string to a list of strings of a character by the unicode codepoint.
It requires module Uutf."""
maintainer: ["Tan Kian-ting <yoxem@kianting.info>"]
authors: ["Tan Kian-ting <yoxem@kianting.info>"]
license: "MIT"
tags: ["string" "utf8"]
homepage: "https://github.com/yoxem/stringCodepointSplitter"
bug-reports: "https://github.com/Yoxem/stringCodepointSplitter/issues"
depends: [
2023-08-31 19:12:14 +08:00
"ocaml" {>= "4.06"}
2023-08-27 18:42:29 +08:00
"ocamlfind"
2023-08-27 03:56:41 +08:00
"dune" {>= "3.9"}
"uutf"
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/yoxem/stringCodepointSplitter.git"