File: control

package info (click to toggle)
rust-inquire 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 6,936 kB
  • sloc: makefile: 2; sh: 1
file content (75 lines) | stat: -rw-r--r-- 2,886 bytes parent folder | download
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
69
70
71
72
73
74
75
Source: rust-inquire
Section: rust
Priority: optional
Maintainer: Jonas Smedegaard <dr@jones.dk>
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-rust,
 librust-bitflags-2+default-dev,
 librust-chrono-0.4+default-dev,
 librust-console-0.15+default-dev,
 librust-console-0.15+windows-console-colors-dev,
 librust-crossterm-dev (<< 0.29),
 librust-dyn-clone-1+default-dev,
 librust-fuzzy-matcher-0.3-dev,
 librust-rstest-dev (<< 0.22),
 librust-tempfile-3+default-dev,
 librust-termion-dev (<< 3),
 librust-unicode-segmentation-1+default-dev,
 librust-unicode-width-0.1+default-dev,
Standards-Version: 4.7.2
Homepage: https://github.com/mikaelmello/inquire
Vcs-Git: https://salsa.debian.org/debian/rust-inquire.git
Vcs-Browser: https://salsa.debian.org/debian/rust-inquire
Rules-Requires-Root: no

Package: librust-inquire-dev
Architecture: all
Multi-Arch: foreign
Depends:
 librust-bitflags-2+default-dev,
 librust-chrono-0.4+default-dev,
 librust-console-0.15+default-dev,
 librust-console-0.15+windows-console-colors-dev,
 librust-crossterm-dev (<< 0.29),
 librust-dyn-clone-1+default-dev,
 librust-fuzzy-matcher-0.3-dev,
 librust-tempfile-3+default-dev,
 librust-termion-dev (<< 3),
 librust-unicode-segmentation-1+default-dev,
 librust-unicode-width-0.1+default-dev,
 ${misc:Depends},
Provides:
 librust-inquire-0.8+console-dev (= ${binary:Version}),
 librust-inquire-0.8+crossterm-dev (= ${binary:Version}),
 librust-inquire-0.8+date-dev (= ${binary:Version}),
 librust-inquire-0.8+default-dev (= ${binary:Version}),
 librust-inquire-0.8+editor-dev (= ${binary:Version}),
 librust-inquire-0.8+fuzzy-dev (= ${binary:Version}),
 librust-inquire-0.8+macros-dev (= ${binary:Version}),
 librust-inquire-0.8+one-liners-dev (= ${binary:Version}),
 librust-inquire-0.8+termion-dev (= ${binary:Version}),
 librust-inquire-0.8-dev (= ${binary:Version}),
 librust-inquire-0.8.0-dev (= ${binary:Version}),
Description: interactive prompts on terminals - Rust source code
 inquire is a library for building interactive prompts on terminals.
 .
 It provides several different prompts
 in order to interactively ask the user for information via the CLI.
 With inquire, you can use:
  * Text to get text input from the user,
    with _built-in autocompletion support
  * Editor to get longer text inputs
    by opening a text editor for the user
  * DateSelect to get a date input from the user,
    selected via an _interactive calendar
  * Select to ask the user to select one option from a given list
  * MultiSelect to ask the user
    to select an arbitrary number of options from a given list
  * Confirm for simple yes/no confirmation prompts
  * CustomType for text prompts that you would like to parse
    to a custom type, such as numbers or UUIDs
  * Password for secretive text prompts
 .
 This package contains the source for the Rust inquire crate,
 packaged for use with cargo.