-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (30 loc) · 833 Bytes
/
Cargo.toml
File metadata and controls
38 lines (30 loc) · 833 Bytes
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
37
38
[package]
name = "rc-box"
version = "1.3.0"
edition = "2021"
rust-version = "1.80"
authors = ["Christopher Durham (cad97) <cad97@cad97.com>"]
description = "Known unique versions of Rc and Arc."
repository = "https://github.com/CAD97/pointer-utils/tree/master/crates/rc-box"
readme = "README.md"
keywords = ["rc", "arc", "unique", "box"]
categories = ["data-structures", "no-std", "rust-patterns"]
license = "MIT OR Apache-2.0"
[package.metadata.workspaces]
independent = true
[badges]
maintenance = { status = "passively-maintained" }
[features]
default = ["erasable"]
std = []
[dependencies]
slice-dst = { version = "1.4.0", optional = true }
[dependencies.erasable]
version = "1.0.0"
path = "../erasable"
optional = true
[dependencies.unsize]
version = "1.1"
optional = true
[package.metadata.docs.rs]
all-features = true