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

Allow Data.Conduit.Network.Unix on Windows #518

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions conduit-extra/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog for conduit-extra

## 1.3.7

* Allow Data.Conduit.Network.Unix on Windows [#518](https://github.com/snoyberg/conduit/pull/518)

## 1.3.6

* Add support for `transformers-0.6`
Expand Down
7 changes: 3 additions & 4 deletions conduit-extra/conduit-extra.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Cabal-version: >=1.10
Name: conduit-extra
Version: 1.3.6
Version: 1.3.7
Synopsis: Batteries included conduit: adapters for common libraries.
Description:
The conduit package itself maintains relative small dependencies. The purpose of this package is to collect commonly used utility functions wrapping other library dependencies, without depending on heavier-weight dependencies. The basic idea is that this package should only depend on haskell-platform packages and conduit.
Expand Down Expand Up @@ -28,12 +28,11 @@ Library
Data.Conduit.Lazy
Data.Conduit.Network
Data.Conduit.Network.UDP
Data.Conduit.Network.Unix
Data.Conduit.Process
Data.Conduit.Process.Typed
Data.Conduit.Text
Data.Conduit.Zlib
if !os(windows)
Exposed-modules: Data.Conduit.Network.Unix

if arch(x86_64) || arch(i386)
-- These architectures are able to perform unaligned memory accesses
Expand All @@ -55,7 +54,7 @@ Library
, process
, resourcet >= 1.1
, stm
, streaming-commons >= 0.1.16
, streaming-commons >= 0.2.3.0
, unliftio-core
, typed-process >= 0.2.6

Expand Down
1 change: 1 addition & 0 deletions stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ extra-deps:
- crypton-x509-store-1.6.9
- crypton-x509-system-1.6.7
- crypton-x509-validation-1.6.12
- streaming-commons-0.2.3.0
- tls-1.7.0
drop-packages:
- cryptonite
Expand Down
7 changes: 7 additions & 0 deletions stack.yaml.lock
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ packages:
size: 639
original:
hackage: crypton-x509-validation-1.6.12
- completed:
hackage: streaming-commons-0.2.3.0@sha256:68d5f3daa6caa7cc7d659094a03d543021df5ec4737b67e63ffa4541ac0aae10,4841
pantry-tree:
sha256: 66a00daed951de5a26118dac7e34c72ee32f33ddcd3a50981d80b4dd244992b4
size: 2374
original:
hackage: streaming-commons-0.2.3.0
- completed:
hackage: tls-1.7.0@sha256:fa82e9ca8fd887b66fba8433b3ba1db4e5e047fe7c815707f06209679d04177b,5566
pantry-tree:
Expand Down
Loading