-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpinboard-notes-backup.cabal
54 lines (52 loc) · 2.41 KB
/
pinboard-notes-backup.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: pinboard-notes-backup
version: 1.0.5.7
synopsis: Back up the notes you've saved to Pinboard
description: A command-line application to back up your notes from the
Pinboard bookmarking service to a local SQLite database.
homepage: https://github.com/bdesham/pinboard-notes-backup
license: GPL-3
license-file: LICENSE.txt
author: Benjamin Esham
maintainer: [email protected]
copyright: 2016-2017, 2019, 2021-2024 Benjamin D. Esham
category: Backup, CLI, Pinboard
build-type: Simple
cabal-version: >= 1.10
extra-source-files: CHANGELOG.md
README.md
stack.yaml
stack.yaml.lock
man/pnbackup.1
source-repository head
type: git
location: git://github.com/bdesham/pinboard-notes-backup.git
executable pnbackup
hs-source-dirs: src
main-is: Main.hs
other-modules: Paths_pinboard_notes_backup Pinboard Types Utils Utils.FriendlyReqError
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, aeson >= 0.8 && < 2.3
, ansi-wl-pprint >= 0.6 && < 1.1
, bytestring >= 0.10 && < 0.13
, containers >= 0.5 && < 0.7
, http-client >= 0.5 && < 0.8
, http-types >= 0.12 && < 0.13
, mtl >= 2.2 && < 2.4
, optparse-applicative >= 0.11 && < 0.19
, req >= 1.0 && < 3.14
, sqlite-simple >= 0.4 && < 0.5
, text >= 1.2 && < 2.2
, time >= 1.5 && < 1.13
default-extensions: DataKinds
DeriveFunctor
GeneralizedNewtypeDeriving
InstanceSigs
OverloadedStrings
ghc-options: -Wall -Wcompat
-Wmissing-export-lists
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Widentities
-Wpartial-fields