parent
08d2827613
commit
1d6fbb5f40
|
@ -1,5 +1,9 @@
|
||||||
# Changelog for passman
|
# Changelog for passman
|
||||||
|
|
||||||
|
## 0.3.0.2
|
||||||
|
|
||||||
|
- more dependency versions
|
||||||
|
|
||||||
## 0.3.0.1
|
## 0.3.0.1
|
||||||
|
|
||||||
- updated to latest stackage LTS
|
- updated to latest stackage LTS
|
||||||
|
|
14
package.yaml
14
package.yaml
|
@ -1,5 +1,5 @@
|
||||||
name: passman
|
name: passman
|
||||||
version: 0.3.0.1
|
version: 0.3.0.2
|
||||||
github: "jlamothe/passman"
|
github: "jlamothe/passman"
|
||||||
license: LGPL-3
|
license: LGPL-3
|
||||||
author: "Jonathan Lamothe"
|
author: "Jonathan Lamothe"
|
||||||
|
@ -26,7 +26,7 @@ dependencies:
|
||||||
- containers >= 0.6.2.1 && < 0.7
|
- containers >= 0.6.2.1 && < 0.7
|
||||||
- microlens >= 0.4.11.2 && < 0.5
|
- microlens >= 0.4.11.2 && < 0.5
|
||||||
- microlens-th >= 0.4.3.6 && < 0.5
|
- microlens-th >= 0.4.3.6 && < 0.5
|
||||||
- random
|
- random >=1.1 && < 1.2
|
||||||
|
|
||||||
ghc-options:
|
ghc-options:
|
||||||
- -Wall
|
- -Wall
|
||||||
|
@ -34,10 +34,10 @@ ghc-options:
|
||||||
library:
|
library:
|
||||||
source-dirs: src
|
source-dirs: src
|
||||||
dependencies:
|
dependencies:
|
||||||
- base16-bytestring
|
- base16-bytestring >= 0.1.1.7 && < 0.2
|
||||||
- base64-bytestring
|
- base64-bytestring >= 1.1.0.0 && < 1.2
|
||||||
- SHA
|
- SHA >= 1.6.4.4 && < 1.7
|
||||||
- text
|
- text >= 1.2.4.1 && < 1.3
|
||||||
|
|
||||||
executables:
|
executables:
|
||||||
passman:
|
passman:
|
||||||
|
@ -51,7 +51,7 @@ executables:
|
||||||
- passman
|
- passman
|
||||||
- easy-file >= 0.2.2 && < 0.3
|
- easy-file >= 0.2.2 && < 0.3
|
||||||
- HCL >= 1.8 && < 1.9
|
- HCL >= 1.8 && < 1.9
|
||||||
- transformers
|
- transformers >= 0.5.6.2
|
||||||
|
|
||||||
tests:
|
tests:
|
||||||
passman-test:
|
passman-test:
|
||||||
|
|
|
@ -4,10 +4,10 @@ cabal-version: 1.12
|
||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: cb93fb36b8e4bc0ba6599211ccbb3c5be2617b87a64c3afd57b41914d9ecd495
|
-- hash: 2f7f0e04b3c25e738c5538d07d22d64c28c2a586ed82d577999d070ceafc41ba
|
||||||
|
|
||||||
name: passman
|
name: passman
|
||||||
version: 0.3.0.1
|
version: 0.3.0.2
|
||||||
synopsis: a simple password manager
|
synopsis: a simple password manager
|
||||||
description: Please see the README on GitHub at <https://github.com/jlamothe/passman#readme>
|
description: Please see the README on GitHub at <https://github.com/jlamothe/passman#readme>
|
||||||
category: Security
|
category: Security
|
||||||
|
@ -36,17 +36,17 @@ library
|
||||||
src
|
src
|
||||||
ghc-options: -Wall
|
ghc-options: -Wall
|
||||||
build-depends:
|
build-depends:
|
||||||
SHA
|
SHA >=1.6.4.4 && <1.7
|
||||||
, aeson >=1.5.6.0 && <1.6
|
, aeson >=1.5.6.0 && <1.6
|
||||||
, base >=4.7 && <5
|
, base >=4.7 && <5
|
||||||
, base16-bytestring
|
, base16-bytestring >=0.1.1.7 && <0.2
|
||||||
, base64-bytestring
|
, base64-bytestring >=1.1.0.0 && <1.2
|
||||||
, bytestring >=0.10.12.0 && <0.11
|
, bytestring >=0.10.12.0 && <0.11
|
||||||
, containers >=0.6.2.1 && <0.7
|
, containers >=0.6.2.1 && <0.7
|
||||||
, microlens >=0.4.11.2 && <0.5
|
, microlens >=0.4.11.2 && <0.5
|
||||||
, microlens-th >=0.4.3.6 && <0.5
|
, microlens-th >=0.4.3.6 && <0.5
|
||||||
, random
|
, random >=1.1 && <1.2
|
||||||
, text
|
, text >=1.2.4.1 && <1.3
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
||||||
executable passman
|
executable passman
|
||||||
|
@ -69,8 +69,8 @@ executable passman
|
||||||
, microlens >=0.4.11.2 && <0.5
|
, microlens >=0.4.11.2 && <0.5
|
||||||
, microlens-th >=0.4.3.6 && <0.5
|
, microlens-th >=0.4.3.6 && <0.5
|
||||||
, passman
|
, passman
|
||||||
, random
|
, random >=1.1 && <1.2
|
||||||
, transformers
|
, transformers >=0.5.6.2
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
||||||
test-suite passman-test
|
test-suite passman-test
|
||||||
|
@ -104,5 +104,5 @@ test-suite passman-test
|
||||||
, microlens >=0.4.11.2 && <0.5
|
, microlens >=0.4.11.2 && <0.5
|
||||||
, microlens-th >=0.4.3.6 && <0.5
|
, microlens-th >=0.4.3.6 && <0.5
|
||||||
, passman
|
, passman
|
||||||
, random
|
, random >=1.1 && <1.2
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
Loading…
Reference in New Issue
Block a user