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

Update dependency bounds #179

Merged
merged 1 commit into from
Oct 22, 2023
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
24 changes: 12 additions & 12 deletions Frames.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Frames
version: 0.7.4
synopsis: Data frames For working with tabular data files
synopsis: Data frames for working with tabular data files
description: User-friendly, type safe, runtime efficient tooling for
working with tabular data deserialized from
comma-separated values (CSV) files. The type of
Expand Down Expand Up @@ -67,24 +67,24 @@ library
build-depends: base >=4.10 && <4.20,
ghc-prim >=0.3 && <0.10,
primitive >= 0.6 && < 0.9,
text >= 1.1.1.0,
template-haskell,
transformers,
text >= 1.1.1.0 && < 2.1,
template-haskell >= 2.10 && < 2.20,
transformers >= 0.5.6 && < 0.6,
vector < 0.14,
readable >= 0.3.1,
readable >= 0.3.1 && < 0.4,
pipes >= 4.1 && < 5,
pipes-bytestring >= 2.1.6 && < 2.2,
pipes-group >= 1.0.8 && < 1.1,
pipes-parse >= 3.0 && < 3.1,
pipes-safe >= 2.2.6 && < 2.4,
bytestring,
bytestring < 0.12,
vinyl >= 0.13.0 && < 0.15,
discrimination,
contravariant,
hashable,
deepseq >= 1.4,
containers,
vector-th-unbox >= 0.2.1.6
discrimination >= 0.4 && < 0.6,
contravariant < 1.6,
hashable >= 1.3 && < 1.5,
deepseq >= 1.4 && < 1.5,
containers < 0.7,
vector-th-unbox >= 0.2.1.6 && < 0.3
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
Expand Down