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

Changelog

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

  * simplify packaging;
    build-depend on dh-sequence-rust
    (not dh-cargo libstring-shellquote-perl)
  * declare compliance with Debian Policy 4.7.0
  * update copyright info: update coverage

 -- Jonas Smedegaard <email address hidden>  Fri, 12 Jul 2024 12:42:37 +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
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
rust-crdts_7.3.2+dfsg-4.dsc 2.6 KiB 91e6e5219d272761370929dc694628f0e5a00db66da807875ddc2f9bd57e6edc
rust-crdts_7.3.2+dfsg.orig.tar.xz 138.8 KiB d62b2ef029f973fbe5c485da0f1d19c6a2e6e305ebfea3797a13fda63221a401
rust-crdts_7.3.2+dfsg-4.debian.tar.xz 4.0 KiB 6deb000f2292ab232504bdb307c4eefae16e891999ec78e89d87fe3c70f22c17

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.