packages feed

smith-cli-0.0.1: smith-cli.cabal

name: smith-cli
version: 0.0.1
synopsis: Command line tool for <https://smith.st/ Smith>.
homepage: https://github.com/smith-security/smith-cli
license:  BSD3
license-file: LICENSE
author: Mark Hibberd
maintainer: mth@smith.st
copyright: (c) 2019, HotelKilo
bug-reports: https://github.com/smith-security/smith-cli/issues
category: Security
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >= 1.10
description:
  This is a command line tool for interacting with <https://smith.st Smith>.
source-repository head
  type:     git
  location: git@github.com:smith-security/smith-cli.git

executable smith
  default-language: Haskell2010
  main-is: ../main/smith.hs
  hs-source-dirs: src
  build-depends:
      base >= 3 && < 5
    , attoparsec >= 0.9 && < 0.14
    , bytestring == 0.10.*
    , base64-bytestring == 1.0.*
    , cereal == 0.5.*
    , crypto-pubkey-openssh == 0.2.*
    , crypto-pubkey-types == 0.4.*
    , directory == 1.*
    , filepath == 1.*
    , HsOpenSSL == 0.11.*
    , network == 2.*
    , openssh-protocol == 0.0.*
    , optparse-applicative >= 0.11 && < 0.15
    , smith-client == 0.0.*
    , text == 1.*
    , transformers >= 0.4 && < 0.6
    , transformers-bifunctors == 0.*
    , unix
  other-modules:
    Smith.Cli.Agent
    Smith.Cli.Command.Issue
    Smith.Cli.Configuration
    Smith.Cli.Data.Program
    Smith.Cli.Dispatch
    Smith.Cli.Error
    Smith.Cli.KeyPair
    Smith.Cli.Parser
  ghc-options:
    -Wall
    -O2
    -threaded