aboutsummaryrefslogtreecommitdiff
path: root/vendor/connection/connection.cabal
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2026-07-25 11:55:08 +0200
committerTom Smeding <tom@tomsmeding.com>2026-07-25 11:55:08 +0200
commit638803c27a06c076f5f235bbf753b00738c56915 (patch)
tree9f86218ded5698edc7fd20b841fdd475fff95870 /vendor/connection/connection.cabal
parent059db48bf1f006f6ef0d4d4d94118ffb6fdbc462 (diff)
Up GHC to 9.12, and vendor half the world
Diffstat (limited to 'vendor/connection/connection.cabal')
-rw-r--r--vendor/connection/connection.cabal44
1 files changed, 44 insertions, 0 deletions
diff --git a/vendor/connection/connection.cabal b/vendor/connection/connection.cabal
new file mode 100644
index 0000000..f36f04c
--- /dev/null
+++ b/vendor/connection/connection.cabal
@@ -0,0 +1,44 @@
+Name: connection
+Version: 0.3.1
+x-revision: 2
+Description:
+ Simple network library for all your connection need.
+ .
+ Features: Really simple to use, SSL/TLS, SOCKS.
+ .
+ This library provides a very simple api to create sockets
+ to a destination with the choice of SSL/TLS, and SOCKS.
+License: BSD3
+License-file: LICENSE
+Copyright: Vincent Hanquez <vincent@snarc.org>
+Author: Vincent Hanquez <vincent@snarc.org>
+Maintainer: Vincent Hanquez <vincent@snarc.org>
+Synopsis: Simple and easy network connections API
+Build-Type: Simple
+Category: Network
+stability: experimental
+Cabal-Version: >=1.8
+Homepage: https://github.com/vincenthz/hs-connection
+extra-source-files: README.md
+ CHANGELOG.md
+
+Library
+ Build-Depends: base >= 4.8 && < 5
+ , basement
+ , bytestring
+ , containers
+ , data-default-class
+ , network >= 2.6.3
+ , tls >= 1.4 && < 1.7
+ , socks >= 0.6
+ , crypton-x509 >= 1.5
+ , crypton-x509-store >= 1.5
+ , crypton-x509-system >= 1.5
+ , crypton-x509-validation >= 1.5
+ Exposed-modules: Network.Connection
+ Other-modules: Network.Connection.Types
+ ghc-options: -Wall
+
+source-repository head
+ type: git
+ location: https://github.com/vincenthz/hs-connection