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.
- Loading branch information
Showing
4 changed files
with
30 additions
and
15 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
stack*.yaml.lock | ||
.stack-work | ||
*~ | ||
dist | ||
dist* | ||
*.pyc | ||
|
||
## User files | ||
|
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,10 @@ | ||
packages: compendium-client/ | ||
core/schema/ | ||
core/rpc/ | ||
adapter/avro/ | ||
adapter/protobuf/ | ||
adapter/persistent/ | ||
grpc/client/ | ||
grpc/server/ | ||
|
||
extra-packages: network==3.1.0.1 |
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,18 +1,21 @@ | ||
cabal-version: >=1.10 | ||
|
||
name: compendium-client | ||
version: 0.1.0.0 | ||
synopsis: Client for the compendium schema server | ||
-- description: | ||
-- bug-reports: | ||
version: 0.1.0.1 | ||
synopsis: Client for the Compendium schema server | ||
description: Client for the <https://github.com/higherkindness/compendium Compendium> schema server | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
author: Alejandro Serrano | ||
maintainer: [email protected] | ||
-- copyright: | ||
copyright: Copyright © 2019-2020 <http://47deg.com 47 Degrees> | ||
category: Network | ||
build-type: Simple | ||
-- extra-source-files: README.md, 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: Compendium.Client | ||
|
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,21 +1,23 @@ | ||
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-schema | ||
version: 0.1.0.0 | ||
synopsis: Format-independent schemas for serialization | ||
-- description: | ||
description: With @mu-schema@ you can describe schemas using type-level constructs, and derive serializers from those. See @mu-avro@, @mu-protobuf@ for the actual adapters. | ||
-- bug-reports: | ||
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.Schema | ||
|