File: control

package info (click to toggle)
rust-crdts 7.3.2%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 516 kB
  • sloc: makefile: 2; sh: 1
file content (68 lines) | stat: -rw-r--r-- 2,464 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
Source: rust-crdts
Section: rust
Priority: optional
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-rust,
 librust-derive-more-0.99+default-dev,
 librust-num-0.4+default-dev,
 librust-num-0.4+serde-dev,
 librust-quickcheck-1+default-dev,
 librust-quickcheck-macros-1+default-dev,
 librust-rand-0.8+default-dev,
 librust-serde-1.0+default-dev,
 librust-serde-1.0+derive-dev,
 librust-tiny-keccak-2+default-dev,
 librust-tiny-keccak-2+sha3-dev,
Maintainer: Jonas Smedegaard <dr@jones.dk>
Standards-Version: 4.7.0
Vcs-Git: https://salsa.debian.org/debian/rust-crdts.git
Vcs-Browser: https://salsa.debian.org/debian/rust-crdts
Homepage: https://github.com/rust-crdt/rust-crdt
Rules-Requires-Root: no

Package: librust-crdts-dev
Architecture: all
Multi-Arch: foreign
Depends:
 librust-num-0.4+default-dev,
 librust-num-0.4+serde-dev,
 librust-quickcheck-1+default-dev,
 librust-rand-0.8+default-dev,
 librust-serde-1.0+default-dev,
 librust-serde-1.0+derive-dev,
 librust-tiny-keccak-2+default-dev,
 librust-tiny-keccak-2+sha3-dev,
 ${misc:Depends},
Provides:
 librust-crdts-7+default-dev (= ${binary:Version}),
 librust-crdts-7+merkle-dev (= ${binary:Version}),
 librust-crdts-7+num-dev (= ${binary:Version}),
 librust-crdts-7+quickcheck-dev (= ${binary:Version}),
 librust-crdts-7-dev (= ${binary:Version}),
 librust-crdts-7.3-dev (= ${binary:Version}),
 librust-crdts-7.3.2-dev (= ${binary:Version}),
Description: practical, serializable, thoroughly tested CRDTs - Rust source code
 crdts provides a family of thoroughly tested hybrid CRDTs
 supporting both State and Op based replication.
 .
 In distributed computing,
 a conflict-free replicated data type (CRDT) is a data structure
 that is replicated across multiple computers in a network,
 with the following features:
  * The application can update any replica independently,
    concurrently and without coordinating with other replicas.
  * An algorithm (itself part of the data type) automatically resolves
    any inconsistencies that might occur.
  * Although replicas may have different state
    at any particular point in time,
    they are guaranteed to eventually converge.
 .
 There are two approaches to CRDTs -
 operation-based CRDTs and state-based CRDTs.
 Both provide strong eventual consistency;
 the former is more more efficient to distribute,
 whereas the latter is simpler to design and implement.
 .
 This package contains the source for the Rust crdts crate,
 for use with cargo.