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
|
Source: golang-github-google-wire
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>
Section: devel
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 12),
dh-exec,
dh-golang,
golang-any,
golang-github-google-go-cmp-dev (>= 0.2.0~),
golang-github-google-subcommands-dev (>= 1.0.1~),
golang-github-pmezard-go-difflib-dev (>= 1.0.0~),
golang-golang-x-tools-dev (>= 1:0.0~git20190422.fe54fb3~)
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-google-wire
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-google-wire.git
Homepage: https://github.com/google/wire
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/google/wire
Package: golang-github-google-wire-dev
Architecture: all
Depends: golang-github-google-go-cmp-dev (>= 0.2.0~),
golang-github-google-subcommands-dev (>= 1.0.1~),
golang-github-pmezard-go-difflib-dev (>= 1.0.0~),
golang-golang-x-tools-dev (>= 1:0.0~git20190422.fe54fb3~),
${misc:Depends}
Description: Compile-time Dependency Injection for Go (library)
Wire: Automated Initialization in Go
.
Wire is a code generation tool that automates connecting components
using dependency injection. Dependencies between components are
represented in Wire as function parameters, encouraging explicit
initialization instead of global variables. Because Wire operates
without runtime state or reflection, code written to be used with
Wire is useful even for hand-written initialization.
.
For an overview, see the introductory blog post
https://blog.golang.org/wire
.
This package contains the github.com/google/wire Go library.
Package: google-wire
Architecture: any
Depends: ${misc:Depends},
${shlibs:Depends}
Built-Using: ${misc:Built-Using}
Description: Compile-time Dependency Injection for Go (program)
Wire: Automated Initialization in Go
.
Wire is a code generation tool that automates connecting components
using dependency injection. Dependencies between components are
represented in Wire as function parameters, encouraging explicit
initialization instead of global variables. Because Wire operates
without runtime state or reflection, code written to be used with
Wire is useful even for hand-written initialization.
.
For an overview, see the introductory blog post
https://blog.golang.org/wire
.
This package contains the wire command-line program.
|