File: control

package info (click to toggle)
rust-hashbag 0.1.12-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 232 kB
  • sloc: makefile: 12; sh: 1
file content (42 lines) | stat: -rw-r--r-- 1,359 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
Source: rust-hashbag
Section: rust
Priority: optional
Build-Depends:
 cmark-gfm <!nodoc>,
 debhelper-compat (= 13),
 dh-sequence-rust,
 librust-serde-1+default-dev,
 librust-serde-json-1+default-dev,
 librust-serde-1+derive-dev,
 librust-bincode-1+default-dev,
Maintainer: Jonas Smedegaard <dr@jones.dk>
Standards-Version: 4.7.0
Homepage: https://github.com/jonhoo/hashbag
Vcs-Git: https://salsa.debian.org/debian/rust-hashbag.git
Vcs-Browser: https://salsa.debian.org/debian/rust-hashbag
Rules-Requires-Root: no

Package: librust-hashbag-dev
Architecture: all
Multi-Arch: foreign
Depends:
 librust-serde-1+default-dev,
 ${misc:Depends},
Provides:
 librust-hashbag-0-dev (= ${binary:Version}),
 librust-hashbag-0.1+default-dev (= ${binary:Version}),
 librust-hashbag-0.1+serde-dev (= ${binary:Version}),
 librust-hashbag-0.1-dev (= ${binary:Version}),
 librust-hashbag-0.1.12-dev (= ${binary:Version}),
Description: unordered multiset using a hash bag - Rust source code
 HashBag provides an unordered multiset/bag implementation
 backed by HashMap.
 .
 A bag, unlike a set, allows duplicate values,
 and keeps track of how many duplicates each value holds.
 This type of collection is often referred to
 as an unordered multiset
 (see also C++'s std::unordered_multiset).
 .
 This package contains the source for the Rust hashbag crate,
 for use with cargo.