This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fill all cabal files for Hackage! 🚀 (#72)
- Loading branch information
Showing
9 changed files
with
119 additions
and
69 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @serras @kutyel |
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 |
---|---|---|
|
@@ -2,23 +2,26 @@ cabal-version: >=1.10 | |
name: mu-avro | ||
version: 0.1.0.0 | ||
synopsis: Avro serialization support for Mu microservices | ||
-- description: | ||
-- bug-reports: | ||
description: You can use @mu-avro@ to read AVRO Schema Declarations for mu-haskell | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
author: Alejandro Serrano, Flavio Corpa | ||
maintainer: [email protected] | ||
-- copyright: | ||
copyright: Copyright © 2019-2020 <http://47deg.com 47 Degrees> | ||
category: Network | ||
build-type: Simple | ||
data-files: test/avro/*.avsc | ||
homepage: https://higherkindness.io/mu-haskell/ | ||
bug-reports: https://github.com/higherkindness/mu-haskell/issues | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/higherkindness/mu-haskell | ||
|
||
library | ||
exposed-modules: Mu.Adapter.Avro | ||
, Mu.Quasi.Avro | ||
, Mu.Quasi.Avro.Example | ||
-- other-modules: | ||
-- other-extensions: | ||
build-depends: base >=4.12 && <5 | ||
, mu-schema | ||
, avro | ||
|
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,17 +1,22 @@ | ||
name: mu-persistent | ||
version: 0.1.0.0 | ||
synopsis: Utilities for interoperation between Mu and Persistent | ||
-- description: | ||
description: Please see the <https://github.com/higherkindness/mu-haskell/persistent#readme readme file>. | ||
homepage: https://github.com/higherkindness/mu-haskell/persistent#readme | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
author: Flavio Corpa, Alejandro Serrano | ||
maintainer: [email protected] | ||
copyright: Copyright © 2019-2020 47 Degrees. <http://47deg.com> | ||
copyright: Copyright © 2019-2020 <http://47deg.com 47 Degrees> | ||
category: Network | ||
build-type: Simple | ||
cabal-version: >=1.10 | ||
extra-source-files: README.md | ||
bug-reports: https://github.com/higherkindness/mu-haskell/issues | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/higherkindness/mu-haskell | ||
|
||
library | ||
exposed-modules: Mu.Adapter.Persistent | ||
|
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 |
---|---|---|
|
@@ -2,25 +2,28 @@ cabal-version: >=1.10 | |
name: mu-protobuf | ||
version: 0.1.0.0 | ||
synopsis: Protocol Buffers serialization and gRPC schema import for Mu microservices | ||
-- description: | ||
-- bug-reports: | ||
description: You can use @mu-protobuf@ to read Protobuf Schema Declarations and services for mu-haskell | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
author: Alejandro Serrano | ||
author: Alejandro Serrano, Flavio Corpa | ||
maintainer: [email protected] | ||
-- copyright: | ||
copyright: Copyright © 2019-2020 <http://47deg.com 47 Degrees> | ||
category: Network | ||
build-type: Simple | ||
data-files: test/protobuf/*.proto | ||
homepage: https://higherkindness.io/mu-haskell/ | ||
bug-reports: https://github.com/higherkindness/mu-haskell/issues | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/higherkindness/mu-haskell | ||
|
||
library | ||
exposed-modules: Mu.Adapter.ProtoBuf | ||
, Mu.Adapter.ProtoBuf.Via | ||
, Mu.Quasi.ProtoBuf | ||
, Mu.Quasi.GRpc | ||
, Mu.Quasi.ProtoBuf.Example | ||
-- other-modules: | ||
-- other-extensions: | ||
build-depends: base >=4.12 && <5 | ||
, mu-schema | ||
, mu-rpc | ||
|
@@ -49,4 +52,5 @@ executable test-protobuf | |
, proto3-wire | ||
hs-source-dirs: test | ||
default-language: Haskell2010 | ||
ghc-options: -Wall -fprint-explicit-foralls | ||
ghc-options: -Wall | ||
-fprint-explicit-foralls |
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,30 +1,35 @@ | ||
cabal-version: >=1.10 | ||
-- Initial package description 'mu-haskell.cabal' generated by 'cabal | ||
-- init'. For further documentation, see | ||
-- http://haskell.org/cabal/users-guide/ | ||
|
||
name: mu-rpc | ||
version: 0.1.0.0 | ||
synopsis: Protocol-independent declaration of services and servers | ||
-- description: | ||
-- bug-reports: | ||
description: Protocol-independent declaration of services and servers for mu-haskell | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
author: Alejandro Serrano | ||
author: Alejandro Serrano, Flavio Corpa | ||
maintainer: [email protected] | ||
-- copyright: | ||
copyright: Copyright © 2019-2020 <http://47deg.com 47 Degrees> | ||
category: Network | ||
build-type: Simple | ||
extra-source-files: CHANGELOG.md | ||
homepage: https://higherkindness.io/mu-haskell/ | ||
bug-reports: https://github.com/higherkindness/mu-haskell/issues | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/higherkindness/mu-haskell | ||
|
||
library | ||
exposed-modules: Mu.Rpc, | ||
Mu.Server, | ||
Mu.Rpc.Examples | ||
-- other-modules: | ||
-- other-extensions: | ||
build-depends: base >=4.12 && <5, mtl, sop-core, | ||
mu-schema, conduit, text, template-haskell | ||
build-depends: base >=4.12 && <5 | ||
, conduit | ||
, mtl | ||
, mu-schema | ||
, sop-core | ||
, template-haskell | ||
, text | ||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall -fprint-potential-instances | ||
ghc-options: -Wall | ||
-fprint-potential-instances |
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,35 +1,47 @@ | ||
cabal-version: >=1.10 | ||
-- Initial package description 'mu-haskell.cabal' generated by 'cabal | ||
-- init'. For further documentation, see | ||
-- http://haskell.org/cabal/users-guide/ | ||
|
||
name: mu-grpc-client | ||
version: 0.1.0.0 | ||
synopsis: gRPC clients from Mu definitions | ||
-- description: | ||
-- bug-reports: | ||
description: With @mu-grpc-client@ you can easily build gRPC clients for mu-haskell! | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
author: Alejandro Serrano | ||
author: Alejandro Serrano, Flavio Corpa | ||
maintainer: [email protected] | ||
-- copyright: | ||
copyright: Copyright © 2019-2020 <http://47deg.com 47 Degrees> | ||
category: Network | ||
build-type: Simple | ||
extra-source-files: CHANGELOG.md | ||
homepage: https://higherkindness.io/mu-haskell/ | ||
bug-reports: https://github.com/higherkindness/mu-haskell/issues | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/higherkindness/mu-haskell | ||
|
||
library | ||
exposed-modules: Mu.GRpc.Client.TyApps, | ||
Mu.GRpc.Client.Record, | ||
Mu.GRpc.Client.Examples | ||
other-modules: Mu.GRpc.Client.Internal | ||
-- other-extensions: | ||
build-depends: base >=4.12 && <5, sop-core, | ||
bytestring, async, text, | ||
mu-schema, mu-rpc, mu-protobuf, | ||
http2, http2-client, http2-client-grpc, | ||
http2-grpc-proto3-wire, | ||
conduit, stm, stm-chans, stm-conduit, | ||
template-haskell >= 2.12, th-abstraction | ||
build-depends: base >=4.12 && <5 | ||
, async | ||
, bytestring | ||
, conduit | ||
, http2 | ||
, http2-client | ||
, http2-client-grpc | ||
, http2-grpc-proto3-wire | ||
, mu-protobuf | ||
, mu-rpc | ||
, mu-schema | ||
, sop-core | ||
, stm | ||
, stm-chans | ||
, stm-conduit | ||
, template-haskell >= 2.12 | ||
, text | ||
, th-abstraction | ||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall -fprint-potential-instances | ||
ghc-options: -Wall | ||
-fprint-potential-instances |
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,44 +1,67 @@ | ||
cabal-version: >=1.10 | ||
-- Initial package description 'mu-haskell.cabal' generated by 'cabal | ||
-- init'. For further documentation, see | ||
-- http://haskell.org/cabal/users-guide/ | ||
|
||
name: mu-grpc-server | ||
version: 0.1.0.0 | ||
synopsis: gRPC servers for Mu definitions | ||
-- description: | ||
-- bug-reports: | ||
description: With @mu-grpc-server@ you can easily build gRPC servers for mu-haskell! | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
author: Alejandro Serrano | ||
author: Alejandro Serrano, Flavio Corpa | ||
maintainer: [email protected] | ||
-- copyright: | ||
copyright: Copyright © 2019-2020 <http://47deg.com 47 Degrees> | ||
category: Network | ||
build-type: Simple | ||
extra-source-files: CHANGELOG.md | ||
homepage: https://higherkindness.io/mu-haskell/ | ||
bug-reports: https://github.com/higherkindness/mu-haskell/issues | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/higherkindness/mu-haskell | ||
|
||
library | ||
exposed-modules: Mu.GRpc.Server | ||
-- other-extensions: | ||
build-depends: base >=4.12 && <5, sop-core, | ||
bytestring, async, mtl, | ||
mu-schema, mu-rpc, mu-protobuf, | ||
warp, warp-grpc, wai, warp-tls, | ||
http2-grpc-types, http2-grpc-proto3-wire, | ||
conduit, stm, stm-conduit | ||
build-depends: base >=4.12 && <5 | ||
, async | ||
, bytestring | ||
, conduit | ||
, http2-grpc-proto3-wire | ||
, http2-grpc-types | ||
, mtl | ||
, mu-protobuf | ||
, mu-rpc | ||
, mu-schema | ||
, sop-core | ||
, stm | ||
, stm-conduit | ||
, wai | ||
, warp | ||
, warp-grpc | ||
, warp-tls | ||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall -fprint-potential-instances | ||
ghc-options: -Wall | ||
-fprint-potential-instances | ||
|
||
executable grpc-example-server | ||
main-is: ExampleServer.hs | ||
other-modules: Mu.GRpc.Server | ||
build-depends: base >=4.12 && <5, sop-core, | ||
bytestring, async, mtl, | ||
mu-schema, mu-rpc, mu-protobuf, | ||
warp, warp-grpc, wai, warp-tls, | ||
http2-grpc-types, http2-grpc-proto3-wire, | ||
conduit, stm, stm-conduit | ||
build-depends: base >=4.12 && <5 | ||
, async | ||
, bytestring | ||
, conduit | ||
, http2-grpc-proto3-wire | ||
, http2-grpc-types | ||
, mtl | ||
, mu-protobuf | ||
, mu-rpc | ||
, mu-schema | ||
, sop-core | ||
, stm | ||
, stm-conduit | ||
, wai | ||
, warp | ||
, warp-grpc | ||
, warp-tls | ||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall |