module Version ( allVersionsString ) where import Codec.Compression.BZip import Codec.Lz4 import Codec.Lzip import qualified Data.Version as V import qualified Paths_sak as P allVersionsString :: String allVersionsString = "sak version: " ++ V.showVersion P.version ++ "\n" ++ "lzlib-hs: " ++ VERSION_lzlib ++ "\n" ++ "lzlib: " ++ lZVersion ++ "\n" ++ "lzlib API: " ++ show (lZApiVersion :: Int) ++ "\n" ++ "zlib-hs: " ++ VERSION_zlib ++ "\n" ++ "lzma-hs: " ++ VERSION_lzma ++ "\n" ++ "zstd-hs: " ++ VERSION_zstd ++ "\n" ++ "bz2-hs: " ++ VERSION_bz2 ++ "\n" ++ "bz2: " ++ bZ2BzlibVersion ++ "\n" ++ "lz4: " ++ lZ4VersionString ++ "\n" ++ "lz4-hs: " ++ VERSION_lz4_hs