nkeys 0.0.1.0 → 0.0.1.1
raw patch · 2 files changed
+13/−20 lines, 2 filesdep ~text
Dependency ranges changed: text
Files
- app/Main.hs +0/−7
- nkeys.cabal +13/−13
− app/Main.hs
@@ -1,7 +0,0 @@-module Main where--import qualified Nats.Nkeys--main :: IO ()-main = do- putStrLn "Hello, Haskell!"
nkeys.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: nkeys-version: 0.0.1.0+version: 0.0.1.1 synopsis: Nkeys ed25519 encoding for use with NATS description: This library exposes a custom encoding and decoding mechanism for ed25519 keys. This codec produces keys that are both URL safe and double-clickable @@ -36,20 +36,20 @@ hs-source-dirs: src default-language: Haskell2010 -executable nkeys-exe- main-is: Main.hs+-- executable nkeys-exe+-- main-is: Main.hs - -- Modules included in this executable, other than Main.- -- other-modules:+-- -- Modules included in this executable, other than Main.+-- -- other-modules: - -- LANGUAGE extensions used by modules in this package.- -- other-extensions:- build-depends:- base == 4.19.0.0,- nkeys-lib+-- -- LANGUAGE extensions used by modules in this package.+-- -- other-extensions:+-- build-depends:+-- base == 4.19.0.0,+-- nkeys-lib - hs-source-dirs: app- default-language: Haskell2010+-- hs-source-dirs: app+-- default-language: Haskell2010 test-suite nkeys-test default-language: Haskell2010@@ -59,7 +59,7 @@ build-depends: base == 4.19.0.0, HUnit ^>=1.6, base32 >= 0.4 && < 0.5,- text >= 2.1, + text >= 2.1 && < 2.2, ed25519 >= 0.0.5 && < 0.1, nkeys-lib, bytestring ^>=0.11