1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
Name: diagrams-core
Version: 1.5.1.1
Synopsis: Core libraries for diagrams EDSL
Description: The core modules underlying diagrams,
an embedded domain-specific language
for compositional, declarative drawing.
Homepage: https://diagrams.github.io
License: BSD3
License-file: LICENSE
Author: Brent Yorgey
Maintainer: diagrams-discuss@googlegroups.com
Bug-reports: https://github.com/diagrams/diagrams-core/issues
Category: Graphics
Build-type: Simple
Cabal-version: 1.18
Extra-source-files: diagrams/*.svg
extra-doc-files: diagrams/*.svg, CHANGELOG.md, README.markdown
Tested-with: GHC ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.7 || ==9.6.3 || ==9.8.1
Source-repository head
type: git
location: git://github.com/diagrams/diagrams-core.git
Library
Exposed-modules: Diagrams.Core,
Diagrams.Core.Compile,
Diagrams.Core.Envelope,
Diagrams.Core.HasOrigin,
Diagrams.Core.Juxtapose,
Diagrams.Core.Names,
Diagrams.Core.Points,
Diagrams.Core.Query
Diagrams.Core.Style,
Diagrams.Core.Measure,
Diagrams.Core.Trace,
Diagrams.Core.Transform,
Diagrams.Core.Types,
Diagrams.Core.V
Build-depends: base >= 4.11 && < 4.20,
containers >= 0.4.2 && < 0.7,
unordered-containers >= 0.2 && < 0.3,
semigroups >= 0.8.4 && < 0.21,
monoid-extras >= 0.6 && < 0.7,
dual-tree >= 0.2 && < 0.3,
lens >= 4.0 && < 5.3,
linear >= 1.11.3 && < 1.23,
adjunctions >= 4.0 && < 5.0,
distributive >=0.2.2 && < 1.0,
profunctors >= 5.0 && < 6.0,
mtl >= 2.2 && < 2.4
hs-source-dirs: src
Other-extensions: DeriveDataTypeable
EmptyDataDecls
ExistentialQuantification
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
MultiParamTypeClasses
OverlappingInstances
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeFamilies
TypeOperators
TypeSynonymInstances
UndecidableInstances
Default-language: Haskell2010
|