-
Notifications
You must be signed in to change notification settings - Fork 325
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
Use hpack not cabal #626
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
779fc8f
Use hpack not cabal
ChrisPenner 3b8578b
Add hpack preference to docs/Style.md
ChrisPenner 5c59887
Set RTS options one at a time to avoid clobbering on conversion to ca…
ChrisPenner 65d47dd
Specify cabal version explicitly in package.yaml
ChrisPenner d23edb5
Fix proto compilation for types-common-journal
ChrisPenner 9cbcc07
Don't warn on non-portable import paths
ChrisPenner fc638bf
Building using hpack (mostly) is working
ChrisPenner 9d0b357
Fix missing libsodium C dependency
ChrisPenner 44ad973
Remove unnecessary cabal-version flag
ChrisPenner 4b291a7
Add hpack-defaults.yaml file to hold extensions and some ghc-options
ChrisPenner dab5f79
Move standard ghc-options to hpack-defaults
ChrisPenner 87c216b
Style guide is now redundant to hpack-defaults
ChrisPenner c5d7d36
rename hpack-defaults to module-defaults
ChrisPenner bf384d7
Rename module-defaults -> package defaults
ChrisPenner bbec2ee
revert accidental change to brig server resources
ChrisPenner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,6 @@ services/nginz/src | |
services/.env | ||
tools/api-simulations/mailboxes.json | ||
tools/api-simulations/reports | ||
.DS_Store | ||
brig-schema.yaml | ||
brig.yaml | ||
brig.integration-aws.yaml | ||
|
@@ -61,6 +60,8 @@ spar.integration-aws.yaml | |
integration-aws.yaml | ||
DOCKER_ID* | ||
swagger-ui | ||
services/spar/spar.cabal | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Now covered by |
||
deploy/services-demo/resources/templates/* | ||
deploy/services-demo/conf/nginz/zwagger-ui/* | ||
|
||
# Ignore cabal files; use package.yaml instead | ||
*.cabal |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,72 @@ | ||
defaults: | ||
local: ../../package-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 <[email protected]> | ||
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 |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
defaults: | ||
local: ../../package-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 <[email protected]> | ||
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 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was duplicated