mirror of
https://github.com/Wessel/nhl-levenshtein.git
synced 2026-07-12 10:46:29 +02:00
70 lines
1.6 KiB
YAML
70 lines
1.6 KiB
YAML
name: levenshteinRatio
|
|
version: 0.1.0.0
|
|
github: "wessel/levenshteinRatio"
|
|
license: BSD-3-Clause
|
|
author: "Wessel T"
|
|
maintainer: "contact@wessel.gg"
|
|
copyright: "Wessel Tip <contact@wessel.gg> (https://wessel.gg/)"
|
|
|
|
# extra-source-files:
|
|
|
|
# Metadata used when publishing your package
|
|
# synopsis: Short description of your package
|
|
# category: Web
|
|
|
|
# To avoid duplicated efforts in documentation and dealing with the
|
|
# complications of embedding Haddock markup inside cabal files, it is
|
|
# common to point users to the README.md file.
|
|
description: Please see the README on GitHub at <https://github.com/wessel/levenshteinRatio#readme>
|
|
|
|
dependencies:
|
|
- base >= 4.7 && < 5
|
|
- array
|
|
- text-format-simple
|
|
|
|
ghc-options:
|
|
- -Wall
|
|
- -Wcompat
|
|
- -Widentities
|
|
- -Wincomplete-record-updates
|
|
- -Wincomplete-uni-patterns
|
|
- -Wmissing-export-lists
|
|
- -Wmissing-home-modules
|
|
- -Wpartial-fields
|
|
- -Wredundant-constraints
|
|
|
|
library:
|
|
source-dirs: src
|
|
|
|
executables:
|
|
levenshteinRatio-exe:
|
|
main: Main.hs
|
|
source-dirs: app
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- levenshteinRatio
|
|
|
|
tests:
|
|
levenshteinRatio-test:
|
|
main: Spec.hs
|
|
source-dirs: test
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- levenshteinRatio
|
|
- hspec
|
|
|
|
benchmarks:
|
|
levenshteinRatio-bench:
|
|
main: Bench.hs
|
|
source-dirs: bench
|
|
dependencies:
|
|
- levenshteinRatio
|
|
- base
|
|
- criterion
|