Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to LTS 15.15 #1

Merged
merged 2 commits into from
Jun 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
*.cabal
.stack-work
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
resolver: lts-8.15
resolver: lts-15.15
packages:
- '.'
43 changes: 43 additions & 0 deletions weather-api.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: a9422265cbf8ec6c3609afab7bfa296e64f5cf979f5c922802d80e2462276796

name: weather-api
version: 0.4.4
synopsis: Weather API implemented in Haskell
description: This library implement generic API for retrieving weather by HTTP, and has Google weather API as example.
category: API
homepage: https://github.com/cvb/hs-weather-api#readme
bug-reports: https://github.com/cvb/hs-weather-api/issues
author: Peter
maintainer: [email protected]
license: MIT
license-file: LICENSE
build-type: Simple

source-repository head
type: git
location: https://github.com/cvb/hs-weather-api

library
exposed-modules:
WeatherApi
WeatherApi.WWOnline
WeatherApi.OpenWeatherMap
other-modules:
WeatherApi.Util
build-depends:
HTTP
, aeson
, attoparsec
, base <5
, bytestring
, network
, network-uri
, utf8-string
, vector
default-language: Haskell2010