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

Use hpack not cabal #626

Merged
merged 15 commits into from
Feb 15, 2019
Merged
Show file tree
Hide file tree
Changes from 13 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
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ services/nginz/src
services/.env
tools/api-simulations/mailboxes.json
tools/api-simulations/reports
.DS_Store
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was duplicated

brig-schema.yaml
brig.yaml
brig.integration-aws.yaml
Expand All @@ -61,6 +60,8 @@ spar.integration-aws.yaml
integration-aws.yaml
DOCKER_ID*
swagger-ui
services/spar/spar.cabal
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now covered by *.cabal

deploy/services-demo/resources/templates/*
deploy/services-demo/conf/nginz/zwagger-ui/*

# Ignore cabal files; use package.yaml instead
*.cabal
123 changes: 0 additions & 123 deletions libs/api-bot/api-bot.cabal

This file was deleted.

72 changes: 72 additions & 0 deletions libs/api-bot/package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
defaults:
local: ../../module-defaults.yaml
name: api-bot
version: '0.4.2'
synopsis: (Internal) API automation around wire-client
description: (Internal) API automation around the wire-client.
category: Network
author: Wire Swiss GmbH
maintainer: Wire Swiss GmbH <backend@wire.com>
license: AGPL-3
dependencies:
- aeson >=0.11
- HaskellNet >=0.5
- HaskellNet-SSL >=0.3
- ansi-terminal >=0.6
- api-client
- async >=2.0
- attoparsec >=0.13
- base >=4.6 && <5
- base64-bytestring >=1.0
- bilge >=0.21
- bytestring >=0.10
- bytestring-conversion >=0.2
- cereal >=0.5
- containers >=0.5
- cryptobox-haskell >=0.1.1
- cryptonite >=0.17
- directory >=1.2
- errors >=2.0
- exceptions >=0.8
- filepath >=1.3
- http-client >=0.4
- http-types >=0.8
- imports
- iso639 >=0.1
- lens >=4.1
- memory >=0.12
- metrics-core >=0.1.17
- mime >=0.4
- monad-control >=1.0
- mtl >=2.1
- mwc-random >=0.13
- optparse-applicative >=0.11
- resource-pool >=0.2
- scientific >=0.3
- semigroups >=0.10
- singletons >=0.10
- stm >=2.4
- text >=0.11
- time >=1.5
- tinylog >=0.14
- transformers >=0.3
- transformers-base >=0.4
- types-common >=0.11
- unliftio-core >=0.1
- unordered-containers >=0.2
- uuid >=1.3
- vector >=0.10
library:
source-dirs: src
exposed-modules:
- Network.Wire.Bot
- Network.Wire.Bot.Assert
- Network.Wire.Bot.Clients
- Network.Wire.Bot.Crypto
- Network.Wire.Bot.Email
- Network.Wire.Bot.Metrics
- Network.Wire.Bot.Monad
- Network.Wire.Bot.Report
- Network.Wire.Bot.Report.Text
- Network.Wire.Bot.Settings
stability: experimental
108 changes: 0 additions & 108 deletions libs/api-client/api-client.cabal

This file was deleted.

61 changes: 61 additions & 0 deletions libs/api-client/package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
defaults:
local: ../../module-defaults.yaml
name: api-client
version: '0.4.2'
synopsis: (Internal) Wire HTTP API Client
description: An (internal) client library for the Wire HTTP API.
category: Network
author: Wire Swiss GmbH
maintainer: Wire Swiss GmbH <backend@wire.com>
license: AGPL-3
dependencies:
- aeson >=0.11
- async >=2.0
- base >=4.6 && <5
- base64-bytestring >=1.0
- bilge >=0.21
- brig-types >=0.84
- bytestring >=0.10
- bytestring-conversion >=0.2
- cargohold-types >=0.25.6
- connection >=0.2
- cookie >=0.4
- cryptobox-haskell >=0.1.1
- cryptonite >=0.17
- data-default-class >=0.0
- errors >=2.1
- exceptions >=0.8
- galley-types >=0.66
- gundeck-types >=1.24
- http-client >=0.4
- http-types >=0.8
- imports
- memory >=0.12
- mime >=0.4
- mtl >=2.1
- network >=2.4
- retry >=0.7
- semigroups >=0.10
- text >=1.2
- time >=1.5
- tinylog >=0.14
- transformers >=0.3
- types-common >=0.16
- unordered-containers >=0.2
- uuid >=1.3
- websockets >=0.9
library:
source-dirs: src
exposed-modules:
- Network.Wire.Client
- Network.Wire.Client.API.Auth
- Network.Wire.Client.API.Asset
- Network.Wire.Client.API.Conversation
- Network.Wire.Client.API.Push
- Network.Wire.Client.API.Search
- Network.Wire.Client.API.User
- Network.Wire.Client.API.Client
- Network.Wire.Client.HTTP
- Network.Wire.Client.Monad
- Network.Wire.Client.Session
stability: experimental
Loading