-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1efbb8
commit 36962d2
Showing
4 changed files
with
39 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
cabal-version: 2.2 | ||
|
||
name: text-ansi | ||
version: 0.3.0.1 | ||
author: Mitchell Dalvi Rosen, Travis Staton | ||
bug-reports: https://github.com/awkward-squad/text-ansi/issues | ||
build-type: Simple | ||
category: Data | ||
copyright: (c) 2018-2024 Mitchell Dalvi Rosen, Travis Staton | ||
homepage: https://github.com/awkward-squad/text-ansi | ||
license-file: LICENSE | ||
license: BSD-3-Clause | ||
maintainer: Mitchell Dalvi Rosen <[email protected]>, Travis Staton <[email protected]> | ||
name: text-ansi | ||
synopsis: Text styling for ANSI terminals. | ||
tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1 | ||
version: 0.3.0.1 | ||
x-revision: 1 | ||
|
||
description: | ||
Text styling for ANSI terminals using SGR codes, as defined by the | ||
<https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48> | ||
|
@@ -15,15 +26,6 @@ description: | |
. | ||
Also features terminal detection, so redirecting styled output to a file will | ||
automatically strip the ANSI escape sequences. | ||
author: Mitchell Rosen, Travis Staton | ||
maintainer: Mitchell Rosen <[email protected]>, Travis Staton <[email protected]> | ||
homepage: https://github.com/awkward-squad/text-ansi | ||
bug-reports: https://github.com/awkward-squad/text-ansi/issues | ||
copyright: (c) 2018-2023 Mitchell Rosen, Travis Staton | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
build-type: Simple | ||
tested-with: GHC == 9.4.7, GHC == 9.6.3, GHC == 9.8.1 | ||
|
||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -35,7 +37,7 @@ source-repository head | |
|
||
library | ||
build-depends: | ||
base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19, | ||
base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20, | ||
text >= 1.0 && < 2.2, | ||
text-builder-linear ^>= 0.1.1, | ||
default-language: | ||
|