summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2019-06-30 06:07:32 +0200
committerEugen Wissner <belka@caraus.de>2019-06-30 06:07:32 +0200
commitf64e186c60a94223eb4b5a156d986a4c78c025c7 (patch)
treeaa3159e86132eacfefec98a9105ad05173c99ae1
parent28aaa6a70b7d8301cb94e7dc112dc292627f0ef9 (diff)
downloadgraphql-f64e186c60a94223eb4b5a156d986a4c78c025c7.tar.gz
Move the source code into src/
-rw-r--r--graphql.cabal4
-rw-r--r--package.yaml2
-rw-r--r--src/Data/GraphQL.hs (renamed from Data/GraphQL.hs)0
-rw-r--r--src/Data/GraphQL/AST.hs (renamed from Data/GraphQL/AST.hs)0
-rw-r--r--src/Data/GraphQL/AST/Core.hs (renamed from Data/GraphQL/AST/Core.hs)0
-rw-r--r--src/Data/GraphQL/AST/Transform.hs (renamed from Data/GraphQL/AST/Transform.hs)0
-rw-r--r--src/Data/GraphQL/Encoder.hs (renamed from Data/GraphQL/Encoder.hs)0
-rw-r--r--src/Data/GraphQL/Error.hs (renamed from Data/GraphQL/Error.hs)0
-rw-r--r--src/Data/GraphQL/Execute.hs (renamed from Data/GraphQL/Execute.hs)0
-rw-r--r--src/Data/GraphQL/Parser.hs (renamed from Data/GraphQL/Parser.hs)0
-rw-r--r--src/Data/GraphQL/Schema.hs (renamed from Data/GraphQL/Schema.hs)0
-rw-r--r--src/Language/GraphQL/Lexer.hs (renamed from Language/GraphQL/Lexer.hs)0
12 files changed, 3 insertions, 3 deletions
diff --git a/graphql.cabal b/graphql.cabal
index 49fdfeb..1d40c1c 100644
--- a/graphql.cabal
+++ b/graphql.cabal
@@ -4,7 +4,7 @@ cabal-version: 1.12
--
-- see: https://github.com/sol/hpack
--
--- hash: aba9e6c1a0e250a7d0dbabbbdae5dceb119343f6acf06744da66677a487fcca6
+-- hash: 4035f9ebd6df2085ad80f5918fc5a65f22b2699f620f7f03c2a3e58ac84827d6
name: graphql
version: 0.3
@@ -50,7 +50,7 @@ library
other-modules:
Paths_graphql
hs-source-dirs:
- ./.
+ src
build-depends:
aeson
, base >=4.7 && <5
diff --git a/package.yaml b/package.yaml
index 2ad4c94..cb9d56c 100644
--- a/package.yaml
+++ b/package.yaml
@@ -34,7 +34,7 @@ dependencies:
- unordered-containers
library:
- source-dirs: .
+ source-dirs: src
dependencies:
- scientific
diff --git a/Data/GraphQL.hs b/src/Data/GraphQL.hs
index 47ca2b0..47ca2b0 100644
--- a/Data/GraphQL.hs
+++ b/src/Data/GraphQL.hs
diff --git a/Data/GraphQL/AST.hs b/src/Data/GraphQL/AST.hs
index 3378655..3378655 100644
--- a/Data/GraphQL/AST.hs
+++ b/src/Data/GraphQL/AST.hs
diff --git a/Data/GraphQL/AST/Core.hs b/src/Data/GraphQL/AST/Core.hs
index f0c617c..f0c617c 100644
--- a/Data/GraphQL/AST/Core.hs
+++ b/src/Data/GraphQL/AST/Core.hs
diff --git a/Data/GraphQL/AST/Transform.hs b/src/Data/GraphQL/AST/Transform.hs
index af55772..af55772 100644
--- a/Data/GraphQL/AST/Transform.hs
+++ b/src/Data/GraphQL/AST/Transform.hs
diff --git a/Data/GraphQL/Encoder.hs b/src/Data/GraphQL/Encoder.hs
index 924bdea..924bdea 100644
--- a/Data/GraphQL/Encoder.hs
+++ b/src/Data/GraphQL/Encoder.hs
diff --git a/Data/GraphQL/Error.hs b/src/Data/GraphQL/Error.hs
index 08d1622..08d1622 100644
--- a/Data/GraphQL/Error.hs
+++ b/src/Data/GraphQL/Error.hs
diff --git a/Data/GraphQL/Execute.hs b/src/Data/GraphQL/Execute.hs
index e6bb1c9..e6bb1c9 100644
--- a/Data/GraphQL/Execute.hs
+++ b/src/Data/GraphQL/Execute.hs
diff --git a/Data/GraphQL/Parser.hs b/src/Data/GraphQL/Parser.hs
index fc04595..fc04595 100644
--- a/Data/GraphQL/Parser.hs
+++ b/src/Data/GraphQL/Parser.hs
diff --git a/Data/GraphQL/Schema.hs b/src/Data/GraphQL/Schema.hs
index 4c31456..4c31456 100644
--- a/Data/GraphQL/Schema.hs
+++ b/src/Data/GraphQL/Schema.hs
diff --git a/Language/GraphQL/Lexer.hs b/src/Language/GraphQL/Lexer.hs
index 655be3d..655be3d 100644
--- a/Language/GraphQL/Lexer.hs
+++ b/src/Language/GraphQL/Lexer.hs