diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -13,7 +13,7 @@
       disclaimer in the documentation and/or other materials provided
       with the distribution.
 
-    * Neither the name of Vincent Berthoux nor the names of other
+    * Neither the name of Michael Tolly nor the names of other
       contributors may be used to endorse or promote products derived
       from this software without specific prior written permission.
 
diff --git a/conduit-audio-samplerate.cabal b/conduit-audio-samplerate.cabal
--- a/conduit-audio-samplerate.cabal
+++ b/conduit-audio-samplerate.cabal
@@ -1,5 +1,5 @@
 name:                 conduit-audio-samplerate
-version:              0.1.0.2
+version:              0.1.0.3
 author:               Michael Tolly
 maintainer:           miketolly@gmail.com
 license:              BSD3
@@ -25,11 +25,11 @@
     Data.Conduit.Audio.SampleRate
     Data.Conduit.Audio.SampleRate.Binding
   build-depends:
-    base >= 4.6 && < 4.9
+    base >= 4.6 && < 4.11
     , conduit
     , conduit-audio >= 0.1 && < 0.3
     , resourcet
-    , transformers >= 0.3 && < 0.5
+    , transformers >= 0.3 && < 0.6
     , vector
   hs-source-dirs:       src
   default-language:     Haskell2010
diff --git a/src/Data/Conduit/Audio/SampleRate/Binding.chs b/src/Data/Conduit/Audio/SampleRate/Binding.chs
--- a/src/Data/Conduit/Audio/SampleRate/Binding.chs
+++ b/src/Data/Conduit/Audio/SampleRate/Binding.chs
@@ -35,27 +35,27 @@
   { convTypeToC `ConverterType'
   , `Int'
   , id `Ptr CInt'
-  } -> `State' #}
+  } -> `State' id #}
 
 -- SRC_STATE* src_delete (SRC_STATE *state) ;
 {#fun delete as deleteRaw
-  { `State'
-  } -> `State' #}
+  { id `State'
+  } -> `State' id #}
 
 -- int src_process (SRC_STATE *state, SRC_DATA *data) ;
 {#fun process as processRaw
-  { `State'
+  { id `State'
   , `Data'
   } -> `Int' #}
 
 -- int src_reset (SRC_STATE *state) ;
 {#fun reset as resetRaw
-  { `State'
+  { id `State'
   } -> `Int' #}
 
 -- int src_set_ratio (SRC_STATE *state, double new_ratio) ;
 {#fun set_ratio as setRatioRaw
-  { `State'
+  { id `State'
   , `Double'
   } -> `Int' #}
 
