-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (28 loc) · 745 Bytes
/
Cargo.toml
File metadata and controls
35 lines (28 loc) · 745 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
[package]
name = "rc-borrow"
version = "1.5.0"
edition = "2021"
rust-version = "1.80"
description = "Borrowed forms of Rc and Arc."
repository = "https://github.com/CAD97/pointer-utils/tree/master/crates/rc-borrow"
readme = "README.md"
keywords = ["rc", "arc", "borrow", "reference"]
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"]
std = []
[dependencies.erasable]
version = "1.1.0"
path = "../erasable"
optional = true
[build-dependencies]
autocfg = "1.0.0"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
required-features = ["erasable", "std"]