├── .gitignore ├── .gitmodules ├── CHANGELOG ├── LICENSE ├── Makefile ├── README.md ├── Setup.hs ├── measures ├── report.html ├── report.json ├── report.md ├── serialization.cabal ├── src ├── Dataset.hs ├── Main.hs └── Report.hs ├── stack.yaml └── test └── DocSpec.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /measures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/measures -------------------------------------------------------------------------------- /report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/report.html -------------------------------------------------------------------------------- /report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/report.json -------------------------------------------------------------------------------- /report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/report.md -------------------------------------------------------------------------------- /serialization.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/serialization.cabal -------------------------------------------------------------------------------- /src/Dataset.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/src/Dataset.hs -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/src/Main.hs -------------------------------------------------------------------------------- /src/Report.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/src/Report.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/DocSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/serialization/HEAD/test/DocSpec.hs --------------------------------------------------------------------------------