Skip to content

Commit a85d8be

Browse files
mrehayden1sgillespie
authored andcommitted
GHC 9.2 support.
1 parent 75898a8 commit a85d8be

File tree

2 files changed

+81
-4
lines changed

2 files changed

+81
-4
lines changed

gltf-loader.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ common shared
7979
-Wredundant-constraints
8080
build-depends:
8181
base >=4.14.0 && <5,
82-
linear ^>=1.22,
83-
microlens ^>=0.4.13,
84-
microlens-platform ^>=0.4.3,
82+
linear ^>=1.21,
83+
microlens ^>=0.4.12,
84+
microlens-platform ^>=0.4.2,
8585
rio ^>=0.1.22
8686

8787
library
@@ -146,5 +146,5 @@ test-suite gltf-loader-test
146146
bytestring >=0.10.12 && <0.12,
147147
gltf-codec ^>=0.1.0,
148148
gltf-loader,
149-
hspec >=2.10.10 && <3,
149+
hspec >=2.9.7 && <3,
150150
unordered-containers ^>=0.2.19

stack-9.2.yaml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# This file was automatically generated by 'stack init'
2+
#
3+
# Some commonly used options have been documented as comments in this file.
4+
# For advanced use and comprehensive documentation of the format, please see:
5+
# https://docs.haskellstack.org/en/stable/yaml_configuration/
6+
7+
# A warning or info to be displayed to the user on config load.
8+
user-message: |
9+
Warning (added by new or init): Some packages were found to be incompatible with the resolver and have been left commented out in the packages section.
10+
You can omit this message by removing it from stack.yaml
11+
12+
# Resolver to choose a 'specific' stackage snapshot or a compiler version.
13+
# A snapshot resolver dictates the compiler version and the set of packages
14+
# to be used for project dependencies. For example:
15+
#
16+
# resolver: lts-22.7
17+
# resolver: nightly-2024-01-20
18+
# resolver: ghc-9.6.4
19+
#
20+
# The location of a snapshot can be provided as a file or url. Stack assumes
21+
# a snapshot provided as a file might change, whereas a url resource does not.
22+
#
23+
# resolver: ./custom-snapshot.yaml
24+
# resolver: https://example.com/snapshots/2023-01-01.yaml
25+
resolver: lts-20.26
26+
27+
# User packages to be built.
28+
# Various formats can be used as shown in the example below.
29+
#
30+
# packages:
31+
# - some-directory
32+
# - https://example.com/foo/bar/baz-0.0.2.tar.gz
33+
# subdirs:
34+
# - auto-update
35+
# - wai
36+
packages:
37+
- .
38+
# The following packages have been ignored due to incompatibility with the
39+
# snapshot compiler, dependency conflicts with other packages
40+
# or unsatisfied dependencies.
41+
#- .
42+
43+
# Dependency packages to be pulled from upstream that are not in the resolver.
44+
# These entries can reference officially published versions as well as
45+
# forks / in-progress versions pinned to a git hash. For example:
46+
#
47+
# extra-deps:
48+
# - acme-missiles-0.3
49+
# - git: https://github.com/commercialhaskell/stack.git
50+
# commit: e7b331f14bcffb8367cd58fbfc8b40ec7642100a
51+
#
52+
extra-deps:
53+
- gltf-codec-0.1.0.4
54+
55+
# Override default flag values for local packages and extra-deps
56+
# flags: {}
57+
58+
# Extra package databases containing global packages
59+
# extra-package-dbs: []
60+
61+
# Control whether we use the GHC we find on the path
62+
# system-ghc: true
63+
#
64+
# Require a specific version of Stack, using version ranges
65+
# require-stack-version: -any # Default
66+
# require-stack-version: ">=2.15"
67+
#
68+
# Override the architecture used by Stack, especially useful on Windows
69+
# arch: i386
70+
# arch: x86_64
71+
#
72+
# Extra directories used by Stack for building
73+
# extra-include-dirs: [/path/to/dir]
74+
# extra-lib-dirs: [/path/to/dir]
75+
#
76+
# Allow a newer minor version of GHC than the snapshot specifies
77+
# compiler-check: newer-minor

0 commit comments

Comments
 (0)