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

Changelog

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

  * change binary library package to be arch-independent
  * stop superfluously provide
    virtual un- or minorversioned feature packages

 -- Jonas Smedegaard <email address hidden>  Wed, 01 Feb 2023 15:40:48 +0100

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
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
rust-crdts_7.2.0+dfsg-4.dsc 2.3 KiB b6800e26f2d86f1dce894dca23976cc7ccfd1c944b43ed0686a3a29efbca781e
rust-crdts_7.2.0+dfsg.orig.tar.xz 138.5 KiB b613d44b27749ec6298d58fb69f05646613efe927eedc4808a0009c26924d7f3
rust-crdts_7.2.0+dfsg-4.debian.tar.xz 13.3 KiB a4983f614b105b2247187658c09e026d196a89239bbf0eda0f220a6cbdb99ccc

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.