-- Initial midair.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: midair version: 0.1.0.0 synopsis: Hot-swappable FRP description: An FRP for livecoding, where you can hot-swap pieces or the whole of an FRP graph while the graph is running. . \"stability: experimental\" is no joke! . A small example is in "Midair.Examples.HotswapCount" stability: experimental license: GPL-3 license-file: LICENSE author: Tom Murphy -- maintainer: -- copyright: category: Control build-type: Simple -- extra-source-files: cabal-version: >=1.10 library exposed-modules: Midair , Midair.Core , Midair.Examples.HotswapCount , Midair.GetChar -- , Midair.MIDI -- other-modules: other-extensions: LambdaCase , Arrows , ExistentialQuantification , TypeFamilies , GADTSyntax , InstanceSigs , Rank2Types , DataKinds , StandaloneDeriving , RankNTypes , RecursiveDo , ScopedTypeVariables , ViewPatterns build-depends: base >=4.8 && <4.9 -- Lower bound: -- Just a guess -- 2.2.0.1 is >5 years old -- I don't have a reason to think it needs a lower bound -- 2.1 is the oldest version on Hackage -- Upper bound: -- 2.5 doesn't exist yet , stm >= 2.2.0.1 && < 2.5 -- Lower bound: -- Just a guess -- 0.4.0.0 is >5 years old -- I don't have a reason to think it needs a lower bound -- 0.1.0.0 is the oldest version on Hackage -- Upper bound: -- 0.6 doesn't exist yet , containers > 0.4.0.0 && < 0.6 , safe >=0.3 && <0.4 -- hs-source-dirs: default-language: Haskell2010