Skip to content

Commit

Permalink
Update from e919089
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 29, 2023
1 parent 84fdafb commit 4da7d19
Show file tree
Hide file tree
Showing 10 changed files with 406 additions and 3 deletions.
Binary file modified 01-index.tar
Binary file not shown.
Binary file modified 01-index.tar.gz
Binary file not shown.
18 changes: 18 additions & 0 deletions all-package-versions/index.html
Expand Up @@ -44,6 +44,24 @@ <h1 class="py-5">
</th>
</thead>
<tbody>
<tr>
<td class="col-sm-2">
<a href="../package/cardano-cli-7.0.0.0">cardano-cli-7.0.0.0</a>
</td>
<td class="col-sm-1">Version</td>
<td class="col-sm-3" data-order="1685324413">2023-05-29T01:40:13Z</td>
<td class="col-sm-6">
<dl class="row">
<dd>
<a href="https://github.com/input-output-hk/cardano-cli/tree/a05c6260b030a115b46feaad1d4317c6d1636970/cardano-cli">https://github.com/input-output-hk/cardano-cli</a>
</dd>
<dt>Commit hash</dt>
<dd>a05c6260b030a115b46feaad1d4317c6d1636970</dd>
<dt>Subdir</dt>
<dd>cardano-cli</dt>
</dl>
</td>
</tr>
<tr>
<td class="col-sm-2">
<a href="../package/fs-api-0.1.0.2">fs-api-0.1.0.2</a>
Expand Down
2 changes: 1 addition & 1 deletion foliage/packages.json

Large diffs are not rendered by default.

321 changes: 321 additions & 0 deletions index/cardano-cli/7.0.0.0/cardano-cli.cabal
@@ -0,0 +1,321 @@
cabal-version: 3.4

name: cardano-cli
version: 7.0.0.0
synopsis: The Cardano command-line interface
description: The Cardano command-line interface.
copyright: 2020-2023 Input Output Global Inc (IOG).
author: IOHK
maintainer: operations@iohk.io
category: Cardano,
CLI,
license: Apache-2.0
license-files: LICENSE
NOTICE
build-type: Simple
extra-source-files: README.md

Flag unexpected_thunks
Description: Turn on unexpected thunks checks
Default: False

common project-config
default-language: Haskell2010

default-extensions: OverloadedStrings
build-depends: base >= 4.14 && < 4.17

ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wno-unticked-promoted-constructors
-Wpartial-fields
-Wredundant-constraints
-Wunused-packages

common maybe-unix
if !os(windows)
build-depends: unix

common maybe-bytestring
if !os(windows)
build-depends: bytestring

library
import: project-config

if flag(unexpected_thunks)
cpp-options: -DUNEXPECTED_THUNKS

hs-source-dirs: src

exposed-modules: Cardano.CLI.Environment
Cardano.CLI.Helpers
Cardano.CLI.Parsers
Cardano.CLI.Render
Cardano.CLI.Run
Cardano.CLI.Run.Friendly
Cardano.CLI.Types

Cardano.CLI.Byron.Commands
Cardano.CLI.Byron.Parsers
Cardano.CLI.Byron.Run
Cardano.CLI.Byron.Delegation
Cardano.CLI.Byron.Genesis
Cardano.CLI.Byron.Key
Cardano.CLI.Byron.Legacy
Cardano.CLI.Byron.Tx
Cardano.CLI.Byron.Query
Cardano.CLI.Byron.UpdateProposal
Cardano.CLI.Byron.Vote

Cardano.CLI.Common.Parsers
Cardano.CLI.Pretty
Cardano.CLI.IO.Lazy

Cardano.CLI.Shelley.Commands
Cardano.CLI.Shelley.Key
Cardano.CLI.Shelley.Orphans
Cardano.CLI.Shelley.Output
Cardano.CLI.Shelley.Parsers
Cardano.CLI.Shelley.Run
Cardano.CLI.Shelley.Run.Address
Cardano.CLI.Shelley.Run.Address.Info
Cardano.CLI.Shelley.Run.Genesis
Cardano.CLI.Shelley.Run.Governance
Cardano.CLI.Shelley.Run.Key
Cardano.CLI.Shelley.Run.Node
Cardano.CLI.Shelley.Run.Pool
Cardano.CLI.Shelley.Run.Query
Cardano.CLI.Shelley.Run.StakeAddress
Cardano.CLI.Shelley.Run.TextView
Cardano.CLI.Shelley.Run.Transaction
Cardano.CLI.Shelley.Run.Read
Cardano.CLI.Shelley.Run.Validate

Cardano.CLI.Ping

Cardano.CLI.TopHandler

other-modules: Paths_cardano_cli
autogen-modules: Paths_cardano_cli

build-depends: aeson >= 1.5.6.0
, aeson-pretty >= 0.8.5
, ansi-terminal
, attoparsec
, base16-bytestring >= 1.0
, bech32 >= 1.1.0
, binary
, bytestring
, canonical-json
, cardano-api ^>= 8.1.0.1
, cardano-binary
, cardano-crypto
, cardano-crypto-class >= 2.1.1
, cardano-crypto-wrapper ^>= 1.5
, cardano-data >= 1.0
, cardano-git-rev
, cardano-ledger-alonzo >= 1.1.1
, cardano-ledger-byron >= 1.0
, cardano-ledger-binary >= 1.0
, cardano-ledger-core >= 1.1
, cardano-ledger-conway >= 1.1
, cardano-ledger-shelley >= 1.1.1
, cardano-ping ^>= 0.1.0.1
, cardano-prelude
, cardano-protocol-tpraos >= 1.0
, cardano-slotting ^>= 0.1
, cardano-strict-containers ^>= 0.1
, cborg >= 0.2.4 && < 0.3
, containers
, contra-tracer
, cryptonite
, deepseq
, directory
, filepath
, formatting
, io-classes
, iproute
, mtl
, microlens
, network
, optparse-applicative-fork
, ouroboros-consensus >= 0.6
, ouroboros-consensus-cardano >= 0.5
, ouroboros-consensus-protocol >= 0.5
, ouroboros-network-api
, ouroboros-network-protocols
, parsec
, prettyprinter
, prettyprinter-ansi-terminal
, random
, split
, strict-stm
, text
, time
, transformers
, transformers-except ^>= 0.1.3
, unliftio-core
, utf8-string
, vector
, yaml

executable cardano-cli
import: project-config
, maybe-unix
hs-source-dirs: app
main-is: cardano-cli.hs
ghc-options: -threaded -rtsopts "-with-rtsopts=-T"

build-depends: cardano-cli
, cardano-crypto-class ^>= 2.1
, optparse-applicative-fork
, transformers-except

library cardano-cli-test-lib
import: project-config
visibility: public
hs-source-dirs: test/cardano-cli-test-lib
exposed-modules: Test.Cardano.CLI.Util
build-depends: cardano-api
, cardano-cli
, exceptions
, hedgehog
, hedgehog-extras ^>= 0.4.5.1
, process
, transformers

test-suite cardano-cli-test
import: project-config, maybe-unix

hs-source-dirs: test/cardano-cli-test
main-is: cardano-cli-test.hs
type: exitcode-stdio-1.0

build-depends: aeson
, base16-bytestring
, bech32 >= 1.1.0
, bytestring
, cardano-api ^>= 8.1.0.1
, cardano-api-gen ^>= 8.1.0.2
, cardano-api:internal
, cardano-cli
, cardano-cli:cardano-cli-test-lib
, cardano-slotting ^>= 0.1
, containers
, directory
, filepath
, hedgehog
, hedgehog-extras ^>= 0.4.5.1
, parsec
, text
, time
, transformers
, yaml

other-modules: Test.Config.Mainnet
Test.Cli.CliIntermediateFormat
Test.Cli.FilePermissions
Test.Cli.ITN
Test.Cli.JSON
Test.Cli.MultiAssetParsing
Test.Cli.Pioneers.Exercise1
Test.Cli.Pioneers.Exercise2
Test.Cli.Pioneers.Exercise3
Test.Cli.Pioneers.Exercise4
Test.Cli.Pioneers.Exercise5
Test.Cli.Pioneers.Exercise6
Test.Cli.Pipes
Test.Cli.Shelley.Run.Query

ghc-options: -threaded -rtsopts -with-rtsopts=-N -with-rtsopts=-T

test-suite cardano-cli-golden
import: project-config

hs-source-dirs: test/cardano-cli-golden
main-is: cardano-cli-golden.hs
type: exitcode-stdio-1.0

build-depends: aeson >= 1.5.6.0
, base16-bytestring
, bytestring
, cardano-api ^>= 8.1.0.1
, cardano-cli
, cardano-cli:cardano-cli-test-lib
, cardano-crypto-wrapper ^>= 1.5.1
, cardano-ledger-byron ^>= 1.0
, cborg
, containers
, filepath
, hedgehog ^>= 1.2
, hedgehog-extras ^>= 0.4.5.1
, regex-compat
, text
, time
, transformers
, unordered-containers
build-tool-depends: cardano-cli:cardano-cli

other-modules: Test.Golden.Byron.SigningKeys
Test.Golden.Byron.Tx
Test.Golden.Byron.TxBody
Test.Golden.Byron.UpdateProposal
Test.Golden.Byron.Vote
Test.Golden.Byron.Witness
Test.Golden.Help
Test.Golden.Key
Test.Golden.Key.NonExtendedKey
Test.Golden.Shelley
Test.Golden.Shelley.Address.Build
Test.Golden.Shelley.Address.Info
Test.Golden.Shelley.Address.KeyGen
Test.Golden.Shelley.Genesis.Create
Test.Golden.Shelley.Genesis.InitialTxIn
Test.Golden.Shelley.Genesis.KeyGenDelegate
Test.Golden.Shelley.Genesis.KeyGenGenesis
Test.Golden.Shelley.Genesis.KeyGenUtxo
Test.Golden.Shelley.Genesis.KeyHash
Test.Golden.Shelley.Governance.AnswerPoll
Test.Golden.Shelley.Governance.CreatePoll
Test.Golden.Shelley.Governance.VerifyPoll
Test.Golden.Shelley.Key.ConvertCardanoAddressKey
Test.Golden.Shelley.Metadata.StakePoolMetadata
Test.Golden.Shelley.MultiSig.Address
Test.Golden.Shelley.Node.IssueOpCert
Test.Golden.Shelley.Node.KeyGen
Test.Golden.Shelley.Node.KeyGenKes
Test.Golden.Shelley.Node.KeyGenVrf
Test.Golden.Shelley.StakeAddress.Build
Test.Golden.Shelley.StakeAddress.DeregistrationCertificate
Test.Golden.Shelley.StakeAddress.KeyGen
Test.Golden.Shelley.StakeAddress.RegistrationCertificate
Test.Golden.Shelley.StakePool.RegistrationCertificate
Test.Golden.Shelley.TextEnvelope.Certificates.GenesisKeyDelegationCertificate
Test.Golden.Shelley.TextEnvelope.Certificates.MIRCertificate
Test.Golden.Shelley.TextEnvelope.Certificates.OperationalCertificate
Test.Golden.Shelley.TextEnvelope.Certificates.StakeAddressCertificates
Test.Golden.Shelley.TextEnvelope.Certificates.StakePoolCertificates
Test.Golden.Shelley.TextEnvelope.Keys.ExtendedPaymentKeys
Test.Golden.Shelley.TextEnvelope.Keys.GenesisDelegateKeys
Test.Golden.Shelley.TextEnvelope.Keys.GenesisKeys
Test.Golden.Shelley.TextEnvelope.Keys.GenesisUTxOKeys
Test.Golden.Shelley.TextEnvelope.Keys.KESKeys
Test.Golden.Shelley.TextEnvelope.Keys.PaymentKeys
Test.Golden.Shelley.TextEnvelope.Keys.StakeKeys
Test.Golden.Shelley.TextEnvelope.Keys.VRFKeys
Test.Golden.Shelley.TextEnvelope.Tx.Tx
Test.Golden.Shelley.TextEnvelope.Tx.TxBody
Test.Golden.Shelley.TextEnvelope.Tx.Witness
Test.Golden.Shelley.TextView.DecodeCbor
Test.Golden.Shelley.Transaction.Assemble
Test.Golden.Shelley.Transaction.Build
Test.Golden.Shelley.Transaction.CalculateMinFee
Test.Golden.Shelley.Transaction.CreateWitness
Test.Golden.Shelley.Transaction.Sign
Test.Golden.TxView
Test.Golden.Version

ghc-options: -threaded -rtsopts -with-rtsopts=-N -with-rtsopts=-T
1 change: 1 addition & 0 deletions index/cardano-cli/7.0.0.0/package.json
@@ -0,0 +1 @@
{"signatures":[{"keyid":"25adef66151837b79ce479a6d4b4d3e7ab01f4be6ac0d017aa0888ad56730012","method":"ed25519","sig":"Cw8x5P/ldPEM27eeT9x7WL/yenvvaFA8s7TuOgGjCmtHGeQyVrqb4+ovgUiZkeQt5FUKHNqD8k/E+bwCICORCw=="},{"keyid":"41ac876be19073390388a8969decce50f78306416c0d9c70d7add734152bb5fd","method":"ed25519","sig":"GrQ1szB/anAPg23de5U1Hl21nCRHYHa1TeO7Jh6D5Mfi3Z/a4YchIXclmKePwnchckdHhy18pefkL2pew6tNAw=="},{"keyid":"4a6910fcd881522c6b237e408846408832a8d838d15a3821c3c57824130dd7aa","method":"ed25519","sig":"79H0fCmRfAQG9ubBQqi7twYSz/T8C//DsU9onOZx8nXjz0p3a41+LS64p12ncWaZB9T9sYcf95uz9FOJ8efRCg=="},{"keyid":"9c28f8cc290e3ebcb927d3167fc685107019ee15392807c301be7b977a711922","method":"ed25519","sig":"50O9jRXpEav9+FDZLLV1e74umcuIglB58O4cBMzVo9/5F007jo2OCSjegveaSpSYzfuh+tWs/zLh6xELQGDHBA=="},{"keyid":"a5670f268a61dec31a0cb6e37ee7f9df59abdf457168a1caadf736803d620d85","method":"ed25519","sig":"l81TVGO7cdOvknlQhd9jYT5Mx7soDZePA4q0+BJ46baX4tlTpuc5VVRid/A+omPkUEN8r/fzdVlommAYJZcnBg=="},{"keyid":"e2984138748ffdf2190338c806a38e8d7fe54962c7a6d7e2675be00e2795498f","method":"ed25519","sig":"FuYl6QWZ9Jenv+vMH87r4kFGw/8q/cDDPTIJWMu0csliSZnq4U2oZ3oHlZhEdF7AiKhAwNK5jw35d7Zx11MGBw=="}],"signed":{"_type":"Targets","expires":null,"targets":{"<repo>/package/cardano-cli-7.0.0.0.tar.gz":{"hashes":{"sha256":"acab8f09fe8971a328c7420439957c32c9fed9ae181e2a220fc5801e2496122c"},"length":166539}},"version":1}}
Binary file added package/cardano-cli-7.0.0.0.tar.gz
Binary file not shown.

0 comments on commit 4da7d19

Please sign in to comment.