forked from uazu/qcell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (29 loc) · 807 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "qcell"
version = "0.4.3"
authors = ["Jim Peters <[email protected]>"]
edition = "2018"
description = "Statically-checked alternatives to RefCell and RwLock"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/uazu/qcell"
documentation = "https://docs.rs/qcell"
keywords = ["cell","refcell","borrow","borrowing","rc"]
categories = [ "data-structures", "memory-management", "rust-patterns" ]
[features]
default = ["std"]
std = ["alloc", "once_cell"]
alloc = []
[dependencies]
once_cell = { version = "1.4.0", optional = true }
[dev-dependencies]
crossbeam = "0.7"
once_cell = "1.4.0"
pin-utils = "0.1"
rand = "0.8"
rustversion = "1.0"
static_assertions = "1.0"
trybuild = "1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]