Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
haskell-gargantext-prelude
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
haskell-gargantext-prelude
Commits
3e32ec3a
Commit
3e32ec3a
authored
Jul 16, 2021
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FIX] adding type for String Conversion
parent
9dc45d72
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
package.yaml
package.yaml
+4
-4
Prelude.hs
src/Gargantext/Prelude.hs
+2
-2
No files found.
package.yaml
View file @
3e32ec3a
...
@@ -20,7 +20,6 @@ extra-source-files:
...
@@ -20,7 +20,6 @@ extra-source-files:
description
:
Please see the README on GitHub at <https://github.com/githubuser/gargantext-prelude#readme>
description
:
Please see the README on GitHub at <https://github.com/githubuser/gargantext-prelude#readme>
dependencies
:
dependencies
:
-
SHA
-
aeson
-
aeson
-
base >= 4.7 && < 5
-
base >= 4.7 && < 5
-
binary
-
binary
...
@@ -36,20 +35,21 @@ dependencies:
...
@@ -36,20 +35,21 @@ dependencies:
-
ini
-
ini
-
lens
-
lens
-
located-base
-
located-base
-
mime-mail
-
mtl
-
mtl
-
password
-
password
-
protolude
-
protolude
-
random
-
random
-
random-shuffle
-
safe
-
safe
-
mime-mail
-
smtp-mail
-
smtp-mail
-
string-conversions
-
string-conversions
-
MonadRandom
-
random-shuffle
-
text
-
text
-
transformers
-
transformers
-
transformers-base
-
transformers-base
-
vector
-
vector
-
SHA
-
MonadRandom
default-extensions
:
default-extensions
:
-
DataKinds
-
DataKinds
...
...
src/Gargantext/Prelude.hs
View file @
3e32ec3a
...
@@ -17,6 +17,7 @@ module Gargantext.Prelude
...
@@ -17,6 +17,7 @@ module Gargantext.Prelude
(
module
Gargantext
.
Prelude
(
module
Gargantext
.
Prelude
,
module
Protolude
,
module
Protolude
,
module
GHC
.
Err
.
Located
,
module
GHC
.
Err
.
Located
,
module
Data
.
String
.
Conversions
,
module
Text
.
Show
,
module
Text
.
Show
,
module
Text
.
Read
,
module
Text
.
Read
,
module
Data
.
Maybe
,
module
Data
.
Maybe
...
@@ -67,13 +68,12 @@ import Protolude ( Bool(True, False), Int, Int64, Double, Integer
...
@@ -67,13 +68,12 @@ import Protolude ( Bool(True, False), Int, Int64, Double, Integer
,
seq
,
seq
)
)
import
qualified
Protolude
as
Protolude
(
writeFile
)
import
qualified
Protolude
as
Protolude
(
writeFile
)
import
Data.String.Conversions
(
ConvertibleStrings
,
cs
)
import
Prelude
(
Enum
,
Bounded
,
minBound
,
maxBound
,
putStrLn
)
import
Prelude
(
Enum
,
Bounded
,
minBound
,
maxBound
,
putStrLn
)
-- TODO import functions optimized in Utils.Count
-- TODO import functions optimized in Utils.Count
-- import Protolude hiding (head, last, all, any, sum, product, length)
-- import Protolude hiding (head, last, all, any, sum, product, length)
-- import Gargantext.Utils.Count
-- import Gargantext.Utils.Count
import
Data.Map.Strict
(
insertWith
)
import
Data.Map.Strict
(
insertWith
)
import
Data.String.Conversions
(
cs
)
import
Safe
(
headMay
,
lastMay
,
initMay
,
tailMay
)
import
Safe
(
headMay
,
lastMay
,
initMay
,
tailMay
)
import
Text.Read
(
Read
())
import
Text.Read
(
Read
())
import
Text.Show
(
Show
(),
show
)
import
Text.Show
(
Show
(),
show
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment