-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 854 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 854 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
#cargo-features = ["rust-version"]
[package]
name = "deferred-reference"
version = "0.1.2"
authors = ["Pointerbender"]
#rust-version = "1.51.0"
edition = "2018"
license = "MIT"
description = "A deferred reference is not an actual reference, it is merely a smart pointer tied to the lifetime of the location it points to."
keywords = ["deferred", "reference", "pointer", "lifetime", "borrow"]
categories = ["concurrency", "data-structures", "memory-management", "no-std", "rust-patterns"]
homepage = "https://github.com/Pointerbender/deferred-reference#readme"
repository = "https://github.com/Pointerbender/deferred-reference"
documentation = "https://docs.rs/deferred-reference"
readme = "README.md"
[features]
# default = []
default = ["unstable"]
unstable = ["slice_ptr_len", "coerce_unsized"]
slice_ptr_len = []
coerce_unsized = []
[dependencies]