name: vivid-osc version: 0.4.0.0 synopsis: Open Sound Control encode/decode description: Small, simple, and well-tested implementation of the Open Sound Control message format. . Example usage: . >>> :set -XOverloadedStrings >>> msg = OSC "/foo" [OSC_S "bar", OSC_I 9, OSC_F 0.25, OSC_B "this-is-binary"] >>> :t msg > msg :: OSC >>> :t encodeOSC msg > encodeOSC msg :: ByteString >>> decodeOSC (encodeOSC msg) == Right msg > True . See the README.md file for examples of sending and receiving with UDP license: GPL license-file: LICENSE author: Tom Murphy maintainer: Tom Murphy category: Audio, Codec, Music, Sound extra-source-files: README.md build-type: Simple cabal-version: >=1.10 library exposed-modules: Vivid.OSC other-extensions: LambdaCase , OverloadedStrings , ViewPatterns , ScopedTypeVariables , NoRebindableSyntax , NoIncoherentInstances , NoMonomorphismRestriction , NoUndecidableInstances build-depends: base >3 && <5 -- TODO: can remove when we remove .Old: -- Lower bound: -- Just a guess -- 0.5.0.2 is >5 years old -- I don't have a reason to think it needs a lower bound -- 0.2 is the oldest version on Hackage -- Upper bound: -- 0.9 doesn't exist yet -- Try: "> 0.5.0.2 && < 0.9" , binary -- Lower bound: -- Just a guess -- 0.9.1.8 is >5 years old -- I don't have a reason to think it needs a lower bound -- 0.9 is the oldest version on Hackage -- Upper bound: -- 0.11 doesn't exist yet -- Try: "> 0.9.1.8 && < 0.11" , bytestring -- Lower bound: -- Guess: 0.4 is ~5 years old -- Upper bound: -- 0.6 doesn't exist yet -- Try: ">= 0.4 && < 0.6" , cereal -- Lower bound: -- Just a guess -- 1.2 is >5 years old -- I don't have a reason to think it needs a lower bound -- (Although check out 'old-time' and those changes -- but -- that's before 1.2) -- 1.0 is the oldest version on Hackage -- Upper bound: -- 1.7 doesn't exist yet -- Try: "&& < 1.7" , time >= 1.2 default-language: Haskell2010 ghc-options: -O2 test-suite vivid-osc-tests hs-source-dirs: test main-is: Test.hs type: exitcode-stdio-1.0 build-depends: base , vivid-osc , bytestring , cereal -- Try: == 0.1 , microspec , time default-language: Haskell2010