#weak-references #reference-counting #arc #data-structures #sync #ffi

no-std triomphe

A fork of std::sync::Arc with some extra functionality and without weak references (originally servo_arc)

15 releases

Uses old Rust 2015

0.1.14 Oct 7, 2024
0.1.13 Jun 17, 2024
0.1.12 May 29, 2024
0.1.11 Nov 29, 2023
0.1.0 Dec 5, 2018

#12 in Concurrency

Download history 422893/week @ 2024-09-04 413869/week @ 2024-09-11 398945/week @ 2024-09-18 457441/week @ 2024-09-25 468854/week @ 2024-10-02 476868/week @ 2024-10-09 491746/week @ 2024-10-16 499052/week @ 2024-10-23 496370/week @ 2024-10-30 469979/week @ 2024-11-06 510092/week @ 2024-11-13 509392/week @ 2024-11-20 418144/week @ 2024-11-27 519966/week @ 2024-12-04 599556/week @ 2024-12-11 416249/week @ 2024-12-18

2,053,385 downloads per month
Used in 1,019 crates (53 directly)

MIT/Apache

105KB
2K SLoC

Triomphe

Fork of Arc. This has the following advantages over std::sync::Arc:

  • triomphe::Arc doesn't support weak references: we save space by excluding the weak reference count, and we don't do extra read-modify-update operations to handle the possibility of weak references.
  • triomphe::UniqueArc allows one to construct a temporarily-mutable Arc which can be converted to a regular triomphe::Arc later
  • triomphe::OffsetArc can be used transparently from C code and is compatible with (and can be converted to/from) triomphe::Arc
  • triomphe::ArcBorrow is functionally similar to &triomphe::Arc<T>, however in memory it's simply &T. This makes it more flexible for FFI; the source of the borrow need not be an Arc pinned on the stack (and can instead be a pointer from C , or an OffsetArc). Additionally, this helps avoid pointer-chasing.
  • triomphe::Arc has can be constructed for dynamically-sized types via from_header_and_iter
  • triomphe::ThinArc provides thin-pointer Arcs to dynamically sized types
  • triomphe::ArcUnion is union of two triomphe:Arcs which fits inside one word of memory

This crate is a version of servo_arc meant for general community use.

Dependencies

~110–395KB