containerd/vendor/github.com/urfave/cli
Sebastiaan van Stijn d6070f8a74
go.mod: github.com/urfave/cli v1.22.12
full diff: https://github.com/urfave/cli/compare/v1.22.10...v1.22.12

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-02-01 12:42:03 +01:00
..
.flake8 Go mod vendor 2020-12-01 01:41:25 +08:00
.gitignore go.mod: github.com/urfave/cli v1.22.12 2023-02-01 12:42:03 +01:00
app.go Bump urfave-cli to v1.22.10 2022-11-19 15:13:27 +08:00
category.go Add command to generate man pages 2019-09-11 15:31:02 -04:00
cli.go Add command to generate man pages 2019-09-11 15:31:02 -04:00
CODE_OF_CONDUCT.md Go mod vendor 2020-12-01 01:41:25 +08:00
command.go go.mod: github.com/urfave/cli v1.22.12 2023-02-01 12:42:03 +01:00
context.go vendor: github.com/urfave/cli v1.22.9 2022-05-27 13:05:54 +02:00
docs.go vendor: github.com/urfave/cli v1.22.9 2022-05-27 13:05:54 +02:00
errors.go update urfave/cli to 8ba6f23b6e36d03666a14bd9421f5e3efcb59aca 2017-04-13 07:59:32 -04:00
fish.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag_bool_t.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag_bool.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag_duration.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag_float64.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag_generic.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag_int64_slice.go vendor: github.com/urfave/cli v1.22.9 2022-05-27 13:05:54 +02:00
flag_int64.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag_int_slice.go vendor: github.com/urfave/cli v1.22.9 2022-05-27 13:05:54 +02:00
flag_int.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag_string_slice.go vendor: github.com/urfave/cli v1.22.9 2022-05-27 13:05:54 +02:00
flag_string.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag_uint64.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag_uint.go update urfave/cli v1.22.1, go-md2man v2.0.0, blackfriday v2.0.1 2020-07-02 10:48:45 +02:00
flag.go vendor: github.com/urfave/cli v1.22.9 2022-05-27 13:05:54 +02:00
funcs.go Add command to generate man pages 2019-09-11 15:31:02 -04:00
help.go vendor: github.com/urfave/cli v1.22.9 2022-05-27 13:05:54 +02:00
LICENSE go.mod: github.com/urfave/cli v1.22.12 2023-02-01 12:42:03 +01:00
parse.go vendor: github.com/urfave/cli v1.22.9 2022-05-27 13:05:54 +02:00
README.md go.mod: github.com/urfave/cli v1.22.12 2023-02-01 12:42:03 +01:00
sort.go Add command to generate man pages 2019-09-11 15:31:02 -04:00
template.go Add command to generate man pages 2019-09-11 15:31:02 -04:00

cli

Run Tests Go Reference Go Report Card codecov

cli is a simple, fast, and fun package for building command line apps in Go. The goal is to enable developers to write fast and distributable command line applications in an expressive way.

Usage Documentation

Usage documentation for v1 is available at the docs site or in-tree at ./docs/v1/manual.md

Installation

Make sure you have a working Go environment. Go version 1.18+ is supported.

Supported platforms

cli is tested against multiple versions of Go on Linux, and against the latest released version of Go on OS X and Windows. For full details, see ./.github/workflows/cli.yml.

Build tags

You can use the following build tags:

urfave_cli_no_docs

When set, this removes ToMarkdown and ToMan methods, so your application won't be able to call those. This reduces the resulting binary size by about 300-400 KB (measured using Go 1.18.1 on Linux/amd64), due to less dependencies.

Using v1 releases

$ go get github.com/urfave/cli
...
import (
  "github.com/urfave/cli"
)
...