Skip to content

Commit

Permalink
compatibility with hosc-0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
yaxu committed Dec 29, 2024
1 parent 2127647 commit d9802aa
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/Sound/Tidal/Stream/Listen.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import System.IO (hPutStrLn, stderr)
import qualified Data.Map as Map
import qualified Sound.Osc.Fd as O
import qualified Sound.Osc.Time.Timeout as O
import qualified Sound.Osc.Transport.Fd.Udp as O
import qualified Network.Socket as N
import qualified Control.Exception as E

Expand Down
1 change: 1 addition & 0 deletions src/Sound/Tidal/Stream/Process.hs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import Data.Maybe (catMaybes, fromJust, fromMaybe)
import System.IO (hPutStrLn, stderr)

import qualified Sound.Osc.Fd as O
import qualified Sound.Osc.Transport.Fd.Udp as O

import Data.List (sortOn)
import qualified Sound.Tidal.Clock as Clock
Expand Down
1 change: 1 addition & 0 deletions src/Sound/Tidal/Stream/Target.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module Sound.Tidal.Stream.Target where

import qualified Sound.Osc.Fd as O
import qualified Sound.Osc.Transport.Fd.Udp as O
import qualified Network.Socket as N
import Data.Maybe (fromJust, isJust)
import Control.Concurrent (forkOS, threadDelay)
Expand Down
2 changes: 1 addition & 1 deletion src/Sound/Tidal/Stream/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Sound.Tidal.Pattern
import Sound.Tidal.Show ()

import qualified Network.Socket as N
import qualified Sound.Osc.Fd as O
import qualified Sound.Osc.Transport.Fd.Udp as O

import qualified Sound.Tidal.Clock as Clock

Expand Down
2 changes: 1 addition & 1 deletion tidal-listener/tidal-listener.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ library
deepseq,
optparse-applicative,
tidal >= 1.10 && < 1.11,
hosc >= 0.20 && < 0.21,
hosc >= 0.21 && < 0.22,
hint,
network
default-language: Haskell2010
Expand Down
4 changes: 2 additions & 2 deletions tidal.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ library
base >=4.8 && <5
, containers < 0.8
, colour < 2.4
, hosc >= 0.20 && < 0.21
, hosc >= 0.21 && < 0.22
, text < 2.2
, parsec >= 3.1.12 && < 3.2
, network < 3.3
Expand Down Expand Up @@ -96,7 +96,7 @@ test-suite tests
build-depends:
base ==4.*
, microspec >= 0.2.0.1
, hosc >= 0.20 && < 0.21
, hosc >= 0.21 && < 0.22
, containers
, parsec
, tidal
Expand Down

0 comments on commit d9802aa

Please sign in to comment.