cabal-version: 2.2 name: list-singleton version: 1.0.0.4 synopsis: Easily and clearly create lists with only one element in them. description: The @list-singleton@ package allows you to easily and clearly create lists with only one element in them, which are typically called "singleton lists" or simply "singletons". (Not to be confused with the @[singletons](https://hackage.haskell.org/package/singletons)@ package!) . With any luck this library will be included in future versions of the @[base](https://hackage.haskell.org/package/base)@ package. See this mailing list thread for an extended discussion: . build-type: Simple category: Data extra-source-files: README.markdown license-file: LICENSE.markdown license: ISC maintainer: Taylor Fausak source-repository head location: https://github.com/tfausak/list-singleton type: git common basics default-language: Haskell2010 ghc-options: -Weverything -Wno-all-missed-specialisations -Wno-implicit-prelude -Wno-missing-exported-signatures -Wno-missing-import-lists -Wno-safe -Wno-unsafe if impl(ghc >= 8.8) ghc-options: -Wno-missing-deriving-strategies if impl(ghc >= 8.10) ghc-options: -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module library import: basics build-depends: base >= 4.9 && < 4.15 exposed-modules: Data.List.Singleton Data.List.NonEmpty.Singleton