/README.md

https://github.com/sjrd/shapeless · Markdown · 196 lines · 152 code · 44 blank · 0 comment · 0 complexity · bc19a022f89c2f2aca21845df216cc6e MD5 · raw file

  1. # shapeless: generic programming for Scala
  2. **shapeless** is a type class and dependent type based generic programming library for Scala. It had its origins in
  3. several talks by Miles Sabin ([@milessabin][milessabin]), given over the course of 2011, on implementing [scrap your
  4. boilerplate][syb] and [higher rank polymorphism][higherrank] in Scala. Since then it has evolved from being a resolutely
  5. experimental project into library which, while still testing the limits of what's possible in Scala, is being used
  6. widely in production systems wherever there are arities to be abstracted over and boilerplate to be scrapped.
  7. [![Build Status](https://api.travis-ci.org/milessabin/shapeless.png?branch=master)](https://travis-ci.org/milessabin/shapeless)
  8. ## Finding out more about the project
  9. A feature overview of shapeless-2.0.0 can be found [here][features200]. If you are upgrading from shapeless-1.2.4 you
  10. will find the [release notes][relnotes] and [migration guide][migration] useful.
  11. shapeless is part of the [typelevel][] family of projects along with [Scalaz][scalaz] and [Spire][spire]. It is an Open
  12. Source project under the Apache License v2, hosted on [github][source]. Binary artefacts are published to the [Sonatype
  13. OSS Repository Hosting service][sonatype] and synced to Maven Central.
  14. There is a [mailing list][group] for discussion around generic programming in Scala in general and shapeless in
  15. particular. You will also find many of the main shapeless contributors on IRC in the #shapeless channel on
  16. [freenode][irc]. Questions about shapeless are often asked and answered under the [shapeless tag on StackOverflow][so].
  17. Some articles on the implementation techniques can be found on [Miles's blog][blog], and Olivera, Moors and Odersky,
  18. [Type Classes as Object and Implicits][tcoi] is useful background material.
  19. Support for Scala 2.9.x is still available via the shapeless-1.2.4 release (feature overview [here][features124]). It
  20. isn't straightforward to bring the latest shapeless features to Scala versions which don't support implicit macros, and
  21. this release should be treated as a stopgap until you are able to move your project to Scala 2.11. It might, however, be
  22. feasible to backport some of the updates via a compiler plugin for Scala 2.9.x, and anyone interested in contributing or
  23. sponsoring such work should [get in touch](mailto:miles@milessabin.com).
  24. [features200]: https://github.com/milessabin/shapeless/wiki/Feature-overview:-shapeless-2.0.0
  25. [features124]: https://github.com/milessabin/shapeless/wiki/Feature-overview:-shapeless-1.2.4
  26. [relnotes]: https://github.com/milessabin/shapeless/wiki/Release-notes:-shapeless-2.0.0
  27. [migration]: https://github.com/milessabin/shapeless/wiki/Migration-guide:-shapeless-1.2.4-to-2.0.0
  28. [milessabin]: https://twitter.com/milessabin
  29. [syb]: http://research.microsoft.com/en-us/um/people/simonpj/papers/hmap/
  30. [higherrank]: http://www.cs.rutgers.edu/~ccshan/cs252/usage.pdf
  31. [typelevel]: http://typelevel.org/
  32. [scalaz]: https://github.com/scalaz/scalaz
  33. [spire]: https://github.com/non/spire
  34. [tcoi]: http://ropas.snu.ac.kr/~bruno/papers/TypeClasses.pdf
  35. [source]: https://github.com/milessabin/shapeless
  36. [sonatype]: https://oss.sonatype.org/index.html#nexus-search;quick~shapeless
  37. [wiki]: https://github.com/milessabin/shapeless/wiki
  38. [group]: https://groups.google.com/group/shapeless-dev
  39. [so]: http://stackoverflow.com/questions/tagged/shapeless
  40. [irc]: http://freenode.net/
  41. [blog]: http://www.chuusai.com/blog
  42. ## Using shapeless
  43. Binary release artefacts are published to the [Sonatype OSS Repository Hosting service][sonatype] and synced to Maven
  44. Central. Snapshots of the master and scala-2.10.x branches are built using [Travis CI][ci] and automatically published
  45. to the Sonatype OSS Snapshot repository. To include the Sonatype repositories in your SBT build you should add,
  46. ```scala
  47. resolvers ++= Seq(
  48. "Sonatype OSS Releases" at "http://oss.sonatype.org/content/repositories/releases/",
  49. "Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
  50. )
  51. ```
  52. [ci]: https://travis-ci.org/milessabin/shapeless
  53. ### shapeless-2.0.0
  54. Builds are available for Scala 2.11.0 and later and for Scala 2.10.4.
  55. ```scala
  56. // For Scala 2.11.0
  57. scalaVersion := "2.11.0"
  58. libraryDependencies ++= Seq(
  59. "com.chuusai" %% "shapeless" % "2.0.0"
  60. )
  61. ```
  62. For Scala 2.10.x you must specify a Scala version of at least 2.10.2, and add either `cross CrossVersion.full` or
  63. provide an explicit Scala version suffix to your shapeless dependency,
  64. ```scala
  65. // For Scala 2.10.x >= 2.10.2
  66. scalaVersion := "2.10.4"
  67. libraryDependencies ++= Seq(
  68. "com.chuusai" % "shapeless_2.10.4" % "2.0.0"
  69. // "com.chuusai" % "shapeless" % "2.0.0" cross CrossVersion.full // Alternatively ...
  70. )
  71. ```
  72. Note that Scala 2.10.x releases are compatible with each other starting from 2.10.2, so a mismatch in minor versions
  73. above would be fine.
  74. ### shapeless-2.1.0-SNAPSHOT
  75. Builds are available for Scala 2.11.0 and Scala 2.10.4. The main line of development for shapeless 2.1.0 will be Scala
  76. 2.11.0 with Scala 2.10.x supported via the macro paradise compiler plugin.
  77. ```scala
  78. scalaVersion := "2.11.0"
  79. libraryDependencies ++= Seq(
  80. "com.chuusai" %% "shapeless" % "2.1.0-SNAPSHOT" changing()
  81. )
  82. ```
  83. Note that for Scala 2.10.4 you must provide an explicit Scala version suffix to your shapeless dependency,
  84. ```scala
  85. scalaVersion := "2.10.4"
  86. libraryDependencies ++= Seq(
  87. "com.chuusai" % "shapeless_2.10.4" % "2.1.0-SNAPSHOT" changing()
  88. )
  89. ```
  90. ### shapeless-1.2.4
  91. Builds are available for Scala 2.9, 2.10 and 2.11.0. If you are working with Scala 2.10.2 or later you should use
  92. shapeless-2.0.0 instead.
  93. If your project is built with Scala 2.9.3 or earlier, then you will need to specify the `-Ydependent-method-types`
  94. compiler flag,
  95. ```scala
  96. scalaVersion := "2.9.3"
  97. scalacOptions += "-Ydependent-method-types"
  98. libraryDependencies ++= Seq(
  99. "com.chuusai" %% "shapeless" % "1.2.4"
  100. )
  101. ```
  102. This option isn't necessary or supported in Scala 2.10 and later, so you should omit it if you are building with
  103. Scala 2.10.2 or later,
  104. ```scala
  105. scalaVersion := "2.10.4"
  106. libraryDependencies ++= Seq(
  107. "com.chuusai" %% "shapeless" % "1.2.4"
  108. )
  109. ```
  110. If you want to be able to support building relative to both 2.9.3 and 2.10 and later then you should use the 2.10.4
  111. configuration above and add the following,
  112. ```scala
  113. scalacOptions <++= scalaVersion map { version =>
  114. val Some((major, minor)) = CrossVersion.partialVersion(version)
  115. if (major < 2 || (major == 2 && minor < 10))
  116. Seq("-Ydependent-method-types")
  117. else Nil
  118. }
  119. ```
  120. which will set the `-Ydependent-method-types` compiler flag conditionally on the actual Scala version in use.
  121. ## Building shapeless
  122. shapeless is built with SBT 0.13.2. The master branch is built with Scala 2.11.0 by default. To build with Scala 2.10.x
  123. you should check out the scala-2.10.x branch. As a general rule all new features and bugfixes are made against master
  124. and Scala 2.11.0 and merged into the scala-2.10.x branch with only the minimal changes needed for forwards
  125. compatibility.
  126. ## Contributors
  127. + Alexandre Archambault <alexandre.archambault@gmail.com> [@alxarchambault](https://twitter.com/alxarchambault)
  128. + Alois Cochard <alois.cochard@gmail.com> [@aloiscochard](https://twitter.com/aloiscochard)
  129. + Ben Hutchison <brhutchison@gmail.com> [@ben_hutchison](https://twitter.com/ben_hutchison)
  130. + Ben James <ben.james@guardian.co.uk> [@bmjames](https://twitter.com/bmjames)
  131. + Brian McKenna <brian@brianmckenna.org> [@puffnfresh](https://twitter.com/puffnfresh)
  132. + Chris Hodapp <clhodapp1@gmail.com> [@clhodapp](https://twitter.com/clhodapp)
  133. + Cody Allen <ceedubs@gmail.com> [@fourierstrick](https://twitter.com/FouriersTrick)
  134. + Dario Rexin <dario.rexin@r3-tech.de> [@evonox](https://twitter.com/evonox)
  135. + George Leontiev <folone@gmail.com> [@folone](https://twitter.com/folone)
  136. + Huw Giddens <hgiddens@gmail.com>
  137. + Jason Zaugg <jzaugg@gmail.com> [@retronym](https://twitter.com/retronym)
  138. + Johannes Rudolph <johannes.rudolph@gmail.com> [@virtualvoid](https://twitter.com/virtualvoid)
  139. + Joni Freeman <joni.freeman@ri.fi> [@jonifreeman](https://twitter.com/jonifreeman)
  140. + Julien Tournay <boudhevil@gmail.com> [@skaalf](https://twitter.com/skaalf)
  141. + Kevin Wright <kev.lee.wright@gmail.com> [@thecoda](https://twitter.com/thecoda)
  142. + Lars Hupel <lars.hupel@mytum.de> [@larsr_h](https://twitter.com/larsr_h)
  143. + Mathias Doenitz <mathias@spray.io> [@sirthias](https://twitter.com/sirthias)
  144. + Michael Donaghy <md401@srcf.ucam.org>
  145. + Michael Pilquist <mpilquist@gmail.com> [@mpilquist](https://twitter.com/mpilquist)
  146. + Miles Sabin <miles@milessabin.com> [@milessabin](https://twitter.com/milessabin)
  147. + Nikolas Evangelopoulos <nikolas@jkl.gr>
  148. + Paolo G. Giarrusso <p.giarrusso@gmail.com> [@blaisorblade](https://twitter.com/blaisorblade)
  149. + Stacy Curl <stacy.curl@gmail.com>
  150. + Stephen Compall <scompall@nocandysw.com> [@S11001001](https://twitter.com/S11001001)
  151. + Tom Switzer <thomas.switzer@gmail.com> [@tixxit](https://twitter.com/tixxit)
  152. + Travis Brown <travisrobertbrown@gmail.com> [@travisbrown](https://twitter.com/travisbrown)