{-# OPTIONS_GHC -fno-warn-orphans #-}
module Data.Version.Natural.Dhall () where

import           Data.Version.Natural (Version(MkVersion))
import           Dhall                (FromDhall, ToDhall)

deriving newtype instance FromDhall (Version)
deriving newtype instance ToDhall (Version)