arcshift 0.4.3

Replacement for std::sync::Arc<T> that supports updating the value, with some caveats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## 0.4.3

Fix Debug impl of ArcShift, so that it honors "{:#?}" format strings.

## 0.4.2

Support rust 1.75 (0.4.1 regressed to require newer rust).

## 0.4.1

Support 32-bit platforms. Prior to this version, ArcShift did not provide correct information
to the allocator when deallocating heap blocks on 32-bit platforms.

## 0.4.0

`ArcShift<T>` now implements `Default` if `T:Default`.