Skip to content
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

Move unconditional dep outside of conditional #503

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions reflex.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ library
constraints-extras >= 0.3 && < 0.5,
containers >= 0.6 && < 0.7,
data-default >= 0.5 && < 0.8,
dependent-sum >= 0.6 && < 0.8,
dependent-map >= 0.3 && < 0.5,
exceptions >= 0.10 && < 0.11,
exception-transformers >= 0.4 && < 0.5,
Expand Down Expand Up @@ -186,16 +187,12 @@ library
if flag(use-template-haskell)
cpp-options: -DUSE_TEMPLATE_HASKELL
build-depends:
dependent-sum >= 0.6 && < 0.8,
haskell-src-exts >= 1.16 && < 1.24,
haskell-src-meta >= 0.6 && < 0.9,
template-haskell >= 2.9 && < 2.21
exposed-modules:
Reflex.Dynamic.TH
other-extensions: TemplateHaskell
else
build-depends:
dependent-sum >= 0.6 && < 0.8

if flag(fast-weak) && impl(ghcjs)
cpp-options: -DGHCJS_FAST_WEAK
Expand Down
Loading