rust-crdts 7.3.2+dfsg-2 source package in Ubuntu

Changelog

rust-crdts (7.3.2+dfsg-2) unstable; urgency=medium

  * update dh-cargo fork

 -- Jonas Smedegaard <email address hidden>  Mon, 14 Aug 2023 13:09:41 +0200

Upload details

Uploaded by:
Jonas Smedegaard
Uploaded to:
Sid
Original maintainer:
Jonas Smedegaard
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
rust-crdts_7.3.2+dfsg-2.dsc 2.6 KiB 8bdd4c2c0fc393c4efc6d9f6369a6250e91d52bc528034aa59cbf09bcd121444
rust-crdts_7.3.2+dfsg.orig.tar.xz 138.8 KiB d62b2ef029f973fbe5c485da0f1d19c6a2e6e305ebfea3797a13fda63221a401
rust-crdts_7.3.2+dfsg-2.debian.tar.xz 12.3 KiB a28220a9d2e2ccaee3ac9f1a66116985556af48ed7e6aa0256cc282558f0e001

Available diffs

No changes file available.

Binary packages built by this source

librust-crdts-dev: 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,
 packaged for use with cargo and dh-cargo.