name: midair version: 0.2.0.1 synopsis: Hot-swappable FRP description: FRP for livecoding. You can hot-swap pieces or the whole of an FRP graph while it's running. . Small examples are in "Midair.Examples" . The API may change a lot in the future. stability: experimental license: GPL-3 license-file: LICENSE author: Tom Murphy maintainer: Tom Murphy -- copyright: category: Concurrency, Control, FRP, Interaction, Music, Reactive, Reactivity, User Interfaces build-type: Simple -- extra-source-files: cabal-version: >=1.10 library exposed-modules: Midair , Midair.Core , Midair.Examples , Midair.Examples.HotswapCount , Midair.Examples.MaxToMin , Midair.GetChar , Midair.Handy -- , Midair.MIDI -- other-modules: other-extensions: LambdaCase , Arrows , ExistentialQuantification , TypeFamilies , GADTSyntax , InstanceSigs , Rank2Types , DataKinds , StandaloneDeriving , RankNTypes , RecursiveDo , ScopedTypeVariables , ViewPatterns build-depends: base < 5 -- 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