cabal-version: 1.12
name: kubernetes-client
version: 0.1.0.0
license: Apache-2.0
license-file: LICENSE
maintainer: Shimin Guo <smguo2001@gmail.com>
synopsis: Client library for Kubernetes
description:
    Client library for interacting with a Kubernetes cluster.
    .
    This package contains hand-written code while kubernetes-client-core contains code auto-generated from the OpenAPI spec.
category: Web
build-type: Simple
extra-source-files:
    test/testdata/kubeconfig.yaml

library
    exposed-modules:
        Kubernetes.Client
        Kubernetes.Client.Config
        Kubernetes.Client.KubeConfig
        Kubernetes.Client.Watch
    hs-source-dirs: src
    other-modules:
        Paths_kubernetes_client
    default-language: Haskell2010
    build-depends:
        aeson >=1.2.2 && <1.5,
        base >=4.7 && <5.0,
        bytestring >=0.10.0 && <0.11,
        connection >=0.2.8 && <0.3,
        containers >=0.6.0.1 && <0.7,
        data-default-class >=0.1.2.0 && <0.2,
        http-client >=0.5 && <0.7,
        http-client-tls >=0.3.5.3 && <0.4,
        kubernetes-client-core ==0.1.0.1,
        microlens >=0.4.3 && <0.5,
        mtl >=2.2.1 && <2.3,
        pem >=0.2.4 && <0.3,
        safe-exceptions >=0.1.0.0 && <0.2,
        streaming-bytestring >=0.1.5 && <0.2.0,
        text >=0.11 && <1.3,
        tls >=1.4.1 && <1.5,
        x509 >=1.7.5 && <1.8,
        x509-store >=1.6.7 && <1.7,
        x509-system >=1.6.6 && <1.7,
        x509-validation >=1.6.11 && <1.7

test-suite example
    type: exitcode-stdio-1.0
    main-is: App.hs
    hs-source-dirs: example
    other-modules:
        Paths_kubernetes_client
    default-language: Haskell2010
    build-depends:
        aeson >=1.2.2 && <1.5,
        base >=4.7 && <5.0,
        bytestring >=0.10.0 && <0.11,
        connection >=0.2.8 && <0.3,
        containers >=0.6.0.1 && <0.7,
        data-default-class >=0.1.2.0 && <0.2,
        http-client >=0.5 && <0.7,
        http-client-tls >=0.3.5.3 && <0.4,
        kubernetes-client -any,
        kubernetes-client-core ==0.1.0.1,
        microlens >=0.4.3 && <0.5,
        mtl >=2.2.1 && <2.3,
        pem >=0.2.4 && <0.3,
        safe-exceptions >=0.1.0.0 && <0.2,
        streaming-bytestring >=0.1.5 && <0.2.0,
        text >=0.11 && <1.3,
        tls >=1.4.1 && <1.5,
        x509 >=1.7.5 && <1.8,
        x509-store >=1.6.7 && <1.7,
        x509-system >=1.6.6 && <1.7,
        x509-validation >=1.6.11 && <1.7

test-suite spec
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    hs-source-dirs: test
    other-modules:
        Paths_kubernetes_client
    default-language: Haskell2010
    build-depends:
        aeson >=1.2.2 && <1.5,
        base >=4.7 && <5.0,
        bytestring >=0.10.0 && <0.11,
        connection >=0.2.8 && <0.3,
        containers >=0.6.0.1 && <0.7,
        data-default-class >=0.1.2.0 && <0.2,
        hspec >=2.6.1 && <2.7,
        http-client >=0.5 && <0.7,
        http-client-tls >=0.3.5.3 && <0.4,
        kubernetes-client -any,
        kubernetes-client-core ==0.1.0.1,
        microlens >=0.4.3 && <0.5,
        mtl >=2.2.1 && <2.3,
        pem >=0.2.4 && <0.3,
        safe-exceptions >=0.1.0.0 && <0.2,
        streaming-bytestring >=0.1.5 && <0.2.0,
        text >=0.11 && <1.3,
        tls >=1.4.1 && <1.5,
        x509 >=1.7.5 && <1.8,
        x509-store >=1.6.7 && <1.7,
        x509-system >=1.6.6 && <1.7,
        x509-validation >=1.6.11 && <1.7,
        yaml >=0.11.0.0 && <0.12