34 lines
855 B
Plaintext
34 lines
855 B
Plaintext
cabal-version: 2.4
|
|
name: MVM
|
|
version: 0.1.0.0
|
|
synopsis:
|
|
Simple stack machine implementation for educational purposes
|
|
|
|
-- A longer description of the package.
|
|
-- description:
|
|
homepage: https://bartlomiejpluta.com
|
|
|
|
-- A URL where users can report bugs.
|
|
-- bug-reports:
|
|
license: MIT
|
|
license-file: LICENSE
|
|
author: Bartłomiej Pluta
|
|
maintainer: noreply.git@mx.bartlomiejpluta.com
|
|
|
|
-- A copyright notice.
|
|
-- copyright:
|
|
-- category:
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
executable MVM
|
|
main-is: Main.hs
|
|
|
|
-- Modules included in this executable, other than Main.
|
|
-- other-modules:
|
|
|
|
-- LANGUAGE extensions used by modules in this package.
|
|
-- other-extensions:
|
|
build-depends: base ^>=4.15.0.0
|
|
hs-source-dirs: app
|
|
default-language: Haskell2010
|