techlab (empty) → 0.1.0.0
raw patch · 7 files changed
+150/−0 lines, 7 filesdep +basedep +chassisdep +co-log-polysemy
Dependencies added: base, chassis, co-log-polysemy, composite-base, containers, dhall, formatting, optics, path-dhall-instance, polysemy, polysemy-extra, polysemy-fs, polysemy-methodology, polysemy-methodology-composite, polysemy-plugin, polysemy-vinyl, polysemy-zoo
Files
- ChangeLog.md +5/−0
- LICENSE +30/−0
- README.md +17/−0
- src/Techlab.hs +34/−0
- src/Techlab/Dhall.hs +7/−0
- src/Techlab/Formatting.hs +5/−0
- techlab.cabal +52/−0
+ ChangeLog.md view
@@ -0,0 +1,5 @@+# Changelog for techlab++## v0.0.1.0++* Experimental polysemy-based prelude.
+ LICENSE view
@@ -0,0 +1,30 @@+Copyright Daniel Firth (c) 2020++All rights reserved.++Redistribution and use in source and binary forms, with or without+modification, are permitted provided that the following conditions are met:++ * Redistributions of source code must retain the above copyright+ notice, this list of conditions and the following disclaimer.++ * Redistributions in binary form must reproduce the above+ copyright notice, this list of conditions and the following+ disclaimer in the documentation and/or other materials provided+ with the distribution.++ * Neither the name of Daniel Firth nor the names of other+ contributors may be used to endorse or promote products derived+ from this software without specific prior written permission.++THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ README.md view
@@ -0,0 +1,17 @@+# Techlab - Bleeding Edge Prelude++Techlab is a prelude aimed at maximising expressivity in Haskell.++This is intended for serious Haskell power users who don't mind the ground moving under them. ++Techlab values expressivity above all other concerns. We want to see how+convenient and natural domain modelling can be made in Haskell. That is, we+don't know exactly what the final form of this toolkit might look like, and we+make no guarantees that anything you might want in a prelude won't be+sacrificed in pursuit of shinier language elements and ergonomics.++Techlab currently contains re-exports of chassis, a wide range of polysemy libraries, dhall,+formatting and optics. Hobbyists who like polysemy will probably feel right at home here, and+contributions are welcome.++Very early release - nothing is namespaced well or comprehensively re-exported.
+ src/Techlab.hs view
@@ -0,0 +1,34 @@+module Techlab (+ module Chassis+, module Composite.Record+, module Optics+, module Polysemy+, module Polysemy.Error+, module Polysemy.FS+, module Polysemy.Input+, module Polysemy.KVStore+, module Polysemy.Methodology+, module Polysemy.Methodology.Composite+, module Polysemy.Output+, module Polysemy.Resource+, module Polysemy.State+, module Polysemy.Tagged+, module Polysemy.Vinyl+) where++import Chassis+import Composite.Record+import Optics+import Path.Dhall ()+import Polysemy+import Polysemy.Error hiding (fromException)+import Polysemy.FS+import Polysemy.Input+import Polysemy.KVStore+import Polysemy.Methodology+import Polysemy.Methodology.Composite+import Polysemy.Output+import Polysemy.Resource+import Polysemy.State+import Polysemy.Tagged+import Polysemy.Vinyl
+ src/Techlab/Dhall.hs view
@@ -0,0 +1,7 @@+module Techlab.Dhall (+ module Dhall+, module Dhall.Deriving+) where++import Dhall+import Dhall.Deriving
+ src/Techlab/Formatting.hs view
@@ -0,0 +1,5 @@+module Techlab.Formatting (+ module Formatting+) where++import Formatting
+ techlab.cabal view
@@ -0,0 +1,52 @@+cabal-version: 1.12++-- This file has been generated from package.yaml by hpack version 0.34.2.+--+-- see: https://github.com/sol/hpack++name: techlab+version: 0.1.0.0+synopsis: Bleeding edge prelude+category: Prelude+author: Daniel Firth+maintainer: dan.firth@homotopic.tech+copyright: 2020 Daniel Firth+license: MIT+license-file: LICENSE+build-type: Simple+extra-source-files:+ README.md+ ChangeLog.md++source-repository head+ type: git+ location: https://gitlab.com/homotopic-tech/++library+ exposed-modules:+ Techlab+ Techlab.Dhall+ Techlab.Formatting+ other-modules:+ Paths_techlab+ hs-source-dirs:+ src+ build-depends:+ base >=4.7 && <5+ , chassis+ , co-log-polysemy+ , composite-base+ , containers+ , dhall+ , formatting+ , optics+ , path-dhall-instance+ , polysemy+ , polysemy-extra+ , polysemy-fs+ , polysemy-methodology+ , polysemy-methodology-composite+ , polysemy-plugin+ , polysemy-vinyl+ , polysemy-zoo+ default-language: Haskell2010