-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michel Boucey
committed
Mar 6, 2021
1 parent
b215ef9
commit 65f3dc5
Showing
3 changed files
with
56 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
name: cayley-client | ||
version: 0.4.13 | ||
version: 0.4.14 | ||
synopsis: A Haskell client for the Cayley graph database | ||
description: cayley-client implements the RESTful API of the Cayley graph database. | ||
homepage: https://github.com/MichelBoucey/cayley-client | ||
license: BSD3 | ||
license-file: LICENSE | ||
author: Michel Boucey | ||
maintainer: [email protected] | ||
copyright: (c) 2015-2020 - Michel Boucey | ||
copyright: (c) 2015-2021 - Michel Boucey | ||
category: Database | ||
build-type: Simple | ||
cabal-version: >=1.10 | ||
extra-source-files: README.md | ||
, tests/testdata.nq | ||
|
||
Tested-With: GHC ==8.4.4 || ==8.6.5 || ==8.8.3 || ==8.10.1 | ||
Tested-With: GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.3 || ==8.10.1 | ||
|
||
Source-Repository head | ||
Type: git | ||
|
@@ -28,12 +28,12 @@ library | |
build-depends: aeson >= 0.8.0.2 && < 1.6 | ||
, attoparsec >= 0.12.1.6 && < 0.14 | ||
, base >= 4.8.1.0 && < 5 | ||
, bytestring >= 0.10.6 && < 0.11 | ||
, binary >= 0.7.5 && < 0.9 | ||
, bytestring >= 0.10.6 && < 0.12 | ||
, binary >= 0.7.5 && < 0.11 | ||
, exceptions >= 0.8.0.2 && < 0.11 | ||
, http-client >= 0.4.30 && < 0.8 | ||
, http-conduit >= 2.1.8 && < 2.4 | ||
, lens >= 4.12.3 && < 4.20 | ||
, lens >= 4.12.3 && < 5.1 | ||
, mtl >= 2.2.1 && < 2.3 | ||
, lens-aeson >= 1.0.0 && < 1.2 | ||
, text >= 1.2.2 && < 1.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,68 @@ | ||
# For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration.html | ||
# This file was automatically generated by 'stack init' | ||
# | ||
# Some commonly used options have been documented as comments in this file. | ||
# For advanced use and comprehensive documentation of the format, please see: | ||
# https://docs.haskellstack.org/en/stable/yaml_configuration/ | ||
|
||
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2) | ||
resolver: lts-8.0 | ||
# Resolver to choose a 'specific' stackage snapshot or a compiler version. | ||
# A snapshot resolver dictates the compiler version and the set of packages | ||
# to be used for project dependencies. For example: | ||
# | ||
# resolver: lts-3.5 | ||
# resolver: nightly-2015-09-21 | ||
# resolver: ghc-7.10.2 | ||
# | ||
# The location of a snapshot can be provided as a file or url. Stack assumes | ||
# a snapshot provided as a file might change, whereas a url resource does not. | ||
# | ||
# resolver: ./custom-snapshot.yaml | ||
# resolver: https://example.com/snapshots/2018-01-01.yaml | ||
resolver: | ||
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/17/5.yaml | ||
|
||
# Local packages, usually specified by relative directory name | ||
# User packages to be built. | ||
# Various formats can be used as shown in the example below. | ||
# | ||
# packages: | ||
# - some-directory | ||
# - https://example.com/foo/bar/baz-0.0.2.tar.gz | ||
# subdirs: | ||
# - auto-update | ||
# - wai | ||
packages: | ||
- '.' | ||
|
||
# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3) | ||
extra-deps: [] | ||
- . | ||
# Dependency packages to be pulled from upstream that are not in the resolver. | ||
# These entries can reference officially published versions as well as | ||
# forks / in-progress versions pinned to a git hash. For example: | ||
# | ||
# extra-deps: | ||
# - acme-missiles-0.3 | ||
# - git: https://github.com/commercialhaskell/stack.git | ||
# commit: e7b331f14bcffb8367cd58fbfc8b40ec7642100a | ||
# | ||
# extra-deps: [] | ||
|
||
# Override default flag values for local packages and extra-deps | ||
flags: {} | ||
# flags: {} | ||
|
||
# Extra package databases containing global packages | ||
extra-package-dbs: [] | ||
# extra-package-dbs: [] | ||
|
||
# Control whether we use the GHC we find on the path | ||
# system-ghc: true | ||
|
||
# | ||
# Require a specific version of stack, using version ranges | ||
# require-stack-version: -any # Default | ||
# require-stack-version: >= 1.0.0 | ||
|
||
# require-stack-version: ">=2.5" | ||
# | ||
# Override the architecture used by stack, especially useful on Windows | ||
# arch: i386 | ||
# arch: x86_64 | ||
|
||
# | ||
# Extra directories used by stack for building | ||
# extra-include-dirs: [/path/to/dir] | ||
# extra-lib-dirs: [/path/to/dir] | ||
|
||
# | ||
# Allow a newer minor version of GHC than the snapshot specifies | ||
# compiler-check: newer-minor | ||
pvp-bounds: both |