rcell 2.0.0

A Cell which can hold either an Arc or an Weak smartpointer or be empty
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "rcell"
description = "A Cell which can hold either an Arc or an Weak smartpointer or be empty"
version = "2.0.0"
readme = "README.md"
license = "MIT OR Apache-2.0"
authors = ["Christian Thäter <ct@pipapo.org>"]
repository = "https://github.com/cehteh/rcell.git"
documentation = "http://docs.rs/rcell"
edition = "2021"
keywords = ["arc", "cell"]
categories = ["concurrency", "memory-management"]

[features]
default = ["sync"]

# enabled by default, use 'sync' Arc/Weak; when disabled then non sync Rc/Weak are used
sync = []