Commit 73da1f18 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[ADM] new dep (simplecrypto) + fix warning

parent 45e60ccd
...@@ -2675,6 +2675,15 @@ ...@@ -2675,6 +2675,15 @@
"repo": "https://github.com/reactormonk/purescript-simple-timestamp.git", "repo": "https://github.com/reactormonk/purescript-simple-timestamp.git",
"version": "v1.3.0" "version": "v1.3.0"
}, },
"simplecrypto": {
"dependencies": [
"prelude",
"maybe",
"node-buffer"
],
"repo": "https://github.com/alpacaaa/purescript-simplecrypto",
"version": "v1.0.1"
},
"sized-vectors": { "sized-vectors": {
"dependencies": [ "dependencies": [
"arrays", "arrays",
...@@ -3343,4 +3352,4 @@ ...@@ -3343,4 +3352,4 @@
"repo": "https://github.com/paf31/purescript-yargs.git", "repo": "https://github.com/paf31/purescript-yargs.git",
"version": "v4.0.0" "version": "v4.0.0"
} }
} }
\ No newline at end of file
...@@ -140,6 +140,11 @@ let additions = ...@@ -140,6 +140,11 @@ let additions =
[ "prelude" ] [ "prelude" ]
"https://github.com/hdgarrood/purescript-versions.git" "https://github.com/hdgarrood/purescript-versions.git"
"v5.0.1" "v5.0.1"
, simplecrypto =
mkPackage
[ "prelude", "maybe", "node-buffer"]
"https://github.com/alpacaaa/purescript-simplecrypto"
"v1.0.1"
} }
in upstream ⫽ overrides ⫽ additions in upstream ⫽ overrides ⫽ additions
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
"uri", "uri",
"versions", "versions",
"web-html", "web-html",
"milkis" "milkis",
"simplecrypto"
] ]
} }
...@@ -6,7 +6,6 @@ import Data.Argonaut as Argonaut ...@@ -6,7 +6,6 @@ import Data.Argonaut as Argonaut
import Data.Generic.Rep (class Generic) import Data.Generic.Rep (class Generic)
import Data.Generic.Rep.Show (genericShow) import Data.Generic.Rep.Show (genericShow)
import Data.Maybe (Maybe(..)) import Data.Maybe (Maybe(..))
import Data.NonEmpty (head)
import Data.String (take) import Data.String (take)
import Effect.Aff (Aff) import Effect.Aff (Aff)
import Effect.Class (liftEffect) import Effect.Class (liftEffect)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment