Compare commits
34 Commits
Author | SHA256 | Date | |
---|---|---|---|
6b406a18c3 | |||
8255af4877 | |||
37febed08e | |||
ea7d6c7f6c | |||
3431542caa | |||
f466d0417a | |||
80439dab36 | |||
70fba753a4 | |||
bdd4433af5 | |||
242172393f | |||
d94b6fe365 | |||
8192f1e16c | |||
a0aad46b15 | |||
eace95bb15 | |||
88121b9cce | |||
38c934efc7 | |||
2c59543d68 | |||
fdc084bd94 | |||
cbe106422d | |||
536c8cd394 | |||
0ac5d89da2 | |||
326a3d9d8c | |||
d4f0044065 | |||
3842d86afb | |||
e3f83bfdee | |||
8edba3528a | |||
617b3b919e | |||
989c3b1876 | |||
862af4027a | |||
8932910ec9 | |||
473aefc407 | |||
b70e53797c | |||
a5cf0d8c12 | |||
173fb907c2 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0f112990fee9c5b1c62c64c926147272534781ed8a7225d39dd0248a670f441d
|
||||
size 21451
|
99
lucid.cabal
99
lucid.cabal
@@ -1,99 +0,0 @@
|
||||
name: lucid
|
||||
version: 2.11.20230408
|
||||
x-revision: 2
|
||||
synopsis: Clear to write, read and edit DSL for HTML
|
||||
description:
|
||||
Clear to write, read and edit DSL for HTML.
|
||||
.
|
||||
* Names are consistent, and do not conflict with base or are keywords (all have suffix @_@)
|
||||
.
|
||||
* Same combinator can be used for attributes and elements (e.g. 'style_')
|
||||
.
|
||||
* For more, read <https://chrisdone.com/posts/lucid the blog post>
|
||||
.
|
||||
See the "Lucid" module for more documentation.
|
||||
homepage: https://github.com/chrisdone/lucid
|
||||
license: BSD3
|
||||
license-file: LICENSE
|
||||
author: Chris Done
|
||||
maintainer: chrisdone@gmail.com
|
||||
copyright: 2014-2021 Chris Done
|
||||
category: Web
|
||||
build-type: Simple
|
||||
cabal-version: >=1.10
|
||||
extra-source-files: README.md, CHANGELOG.md
|
||||
tested-with: GHC==7.10.3,GHC==8.0.2,GHC==8.2.2,GHC==8.4.4,GHC==8.6.5,GHC==8.8.4,GHC==8.10.7,GHC==9.0.1,GHC==9.2.1, GHC==9.4.1, GHC==9.8, GHC==9.10
|
||||
|
||||
library
|
||||
default-language: Haskell2010
|
||||
hs-source-dirs: src/
|
||||
ghc-options: -Wall -O2
|
||||
exposed-modules: Lucid
|
||||
Lucid.Base
|
||||
Lucid.Html5
|
||||
Lucid.Bootstrap
|
||||
|
||||
-- GHC boot libraries
|
||||
build-depends: base >=4.8 && <4.21
|
||||
, bytestring >=0.10.6.0
|
||||
, containers >=0.5.6.2
|
||||
, transformers >=0.4.2.0
|
||||
|
||||
-- GHC boot libraries since 8.4.
|
||||
build-depends: mtl >=2.2
|
||||
, text >=1.2.0.2
|
||||
|
||||
-- compat packages
|
||||
if !impl(ghc >= 8.0)
|
||||
build-depends: semigroups >=0.16.1
|
||||
|
||||
-- other dependencies
|
||||
build-depends: blaze-builder >=0.4.0.0
|
||||
, hashable >=1.2.3.2
|
||||
, mmorph >=1.0.3
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/chrisdone/lucid.git
|
||||
|
||||
test-suite test
|
||||
default-language: Haskell2010
|
||||
type: exitcode-stdio-1.0
|
||||
main-is: Main.hs
|
||||
hs-source-dirs: test
|
||||
other-modules: Example1
|
||||
build-depends: base,
|
||||
lucid,
|
||||
HUnit,
|
||||
hspec,
|
||||
parsec,
|
||||
bifunctors,
|
||||
text,
|
||||
mtl
|
||||
|
||||
benchmark bench
|
||||
default-language: Haskell2010
|
||||
type: exitcode-stdio-1.0
|
||||
hs-source-dirs: benchmarks
|
||||
main-is: Main.hs
|
||||
other-modules: HtmlBenchmarks
|
||||
build-depends: base,
|
||||
deepseq,
|
||||
criterion,
|
||||
blaze-builder,
|
||||
text,
|
||||
bytestring,
|
||||
lucid
|
||||
ghc-options: -O2
|
||||
|
||||
benchmark bench-io
|
||||
default-language: Haskell2010
|
||||
type: exitcode-stdio-1.0
|
||||
hs-source-dirs: benchmarks
|
||||
main-is: IO.hs
|
||||
build-depends: base,
|
||||
criterion,
|
||||
transformers,
|
||||
text,
|
||||
lucid
|
||||
ghc-options: -O2
|
Reference in New Issue
Block a user