inline-r 0.10.3 → 0.10.4
raw patch · 3 files changed
+8/−3 lines, 3 filesdep ~aeson
Dependency ranges changed: aeson
Files
- inline-r.cabal +2/−2
- src/Foreign/R.hsc +2/−0
- src/Foreign/R/Type.hsc +4/−1
inline-r.cabal view
@@ -1,9 +1,9 @@ name: inline-r-version: 0.10.3+version: 0.10.4 license: BSD3 license-file: LICENSE copyright: Copyright (c) 2013-2015 Amgen, Inc.- Copyright (c) 2015-2018 Tweag I/O Limited.+ Copyright (c) 2015-2020 Tweag I/O Limited. author: Mathieu Boespflug, Facundo Dominguez, Alexander Vershilov maintainer: Mathieu Boespflug <m@tweag.io> build-type: Simple
src/Foreign/R.hsc view
@@ -156,7 +156,9 @@ ) where import Control.Memory.Region+#if __GLASGOW_HASKELL__ < 804 import Data.Monoid ((<>))+#endif import Foreign.R.Internal import Foreign.R.Type import Foreign.R.Type as R
src/Foreign/R/Type.hsc view
@@ -3,6 +3,9 @@ {-# LANGUAGE DataKinds #-} {-# LANGUAGE ExistentialQuantification #-} {-# LANGUAGE GADTs #-}+#if __GLASGOW_HASKELL__ >= 810+{-# LANGUAGE StandaloneKindSignatures #-}+#endif {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-}@@ -34,7 +37,7 @@ module Foreign.R.Type ( SEXPTYPE(..) , SSEXPTYPE(..)- , Sing(..)+ , Sing , Logical(..) , PairList , IsVector