1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
Source: golang-github-spf13-viper
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>,
Tim Potter <tpot@hpe.com>,
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
dh-sequence-golang,
golang-any (>= 2:1.17~),
golang-github-fsnotify-fsnotify-dev (>= 1.5.4),
golang-github-hashicorp-hcl-dev (>= 1.0.0),
golang-github-magiconair-properties-dev (>= 1.8.6),
golang-github-mitchellh-mapstructure-dev (>= 1.5.0),
golang-github-pelletier-go-toml-dev (>= 1.9.5),
golang-github-pelletier-go-toml.v2-dev (>= 2.0.1),
golang-github-spf13-afero-dev (>= 1.8.2),
golang-github-spf13-cast-dev (>= 1.5.0),
golang-github-spf13-jwalterweatherman-dev (>= 1.1.0),
golang-github-spf13-pflag-dev (>= 1.0.5),
golang-github-stretchr-testify-dev (>= 1.7.1),
golang-github-subosito-gotenv-dev (>= 1.3.0),
golang-gopkg-ini.v1-dev (>= 1.66.4),
golang-gopkg-yaml.v2-dev (>= 2.4.0),
golang-gopkg-yaml.v3-dev (>= 3.0.0),
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-spf13-viper
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-spf13-viper.git
Homepage: https://github.com/spf13/viper
XS-Go-Import-Path: github.com/spf13/viper
Package: golang-github-spf13-viper-dev
Architecture: all
Multi-Arch: foreign
Depends: golang-github-fsnotify-fsnotify-dev (>= 1.5.4),
golang-github-hashicorp-hcl-dev (>= 1.0.0),
golang-github-magiconair-properties-dev (>= 1.8.6),
golang-github-mitchellh-mapstructure-dev (>= 1.5.0),
golang-github-pelletier-go-toml-dev (>= 1.9.5),
golang-github-pelletier-go-toml.v2-dev (>= 2.0.1),
golang-github-spf13-afero-dev (>= 1.8.2),
golang-github-spf13-cast-dev (>= 1.5.0),
golang-github-spf13-jwalterweatherman-dev (>= 1.1.0),
golang-github-spf13-pflag-dev (>= 1.0.5),
golang-github-stretchr-testify-dev (>= 1.7.1),
golang-github-subosito-gotenv-dev (>= 1.3.0),
golang-gopkg-ini.v1-dev (>= 1.66.4),
golang-gopkg-yaml.v2-dev (>= 2.4.0),
golang-gopkg-yaml.v3-dev (>= 3.0.0),
${misc:Depends},
Description: Go configuration with fangs
Viper is a complete configuration solution for Go applications
including 12-Factor apps. It is designed to work within an application,
and can handle all types of configuration needs and formats.
It supports:
.
* setting defaults
* reading from JSON, TOML, YAML, HCL, and Java properties config files
* live watching and re-reading of config files (optional)
* reading from environment variables
* reading from remote config systems (etcd or Consul), and watching changes
* reading from command line flags
* reading from buffer
* setting explicit values
.
Viper can be thought of as a registry for all of your applications
configuration needs.
|