This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
mathematical-algorithms/mathematical-algorithms.cabal

39 lines
860 B
Text
Raw Normal View History

2025-03-23 12:04:54 +09:00
cabal-version: 3.0
name: mathematical-algorithms
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Abastro
maintainer: abab9579@gmail.com
-- copyright:
category: Math
build-type: Simple
-- extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
2025-03-23 16:56:30 +09:00
common deps
build-depends:
base ^>=4.17.2.1,
vector,
library
import: warnings, deps
exposed-modules:
Poly
hs-source-dirs: src
default-language: GHC2021
2025-03-23 12:04:54 +09:00
executable mathematical-algorithms
2025-03-23 16:56:30 +09:00
import: warnings, deps
2025-03-23 12:04:54 +09:00
main-is: Main.hs
-- other-modules:
2025-03-23 16:56:30 +09:00
build-depends:
mathematical-algorithms
2025-03-23 12:04:54 +09:00
hs-source-dirs: app
default-language: GHC2021