-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
29 lines (23 loc) · 936 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
[package]
name = "self_cell"
version = "1.1.0"
authors = ["Lukas Bergdoll <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "Safe-to-use proc-macro-free self-referential structs in stable Rust."
readme = "README.md"
documentation = "https://docs.rs/self_cell"
repository = "https://github.com/Voultapher/self_cell"
keywords = ["lifetime", "borrowing", "self", "reference", "intrusive"]
categories = ["rust-patterns", "memory-management"]
include = ["src/*.rs", "Cargo.toml", "README.md", "LICENSE"]
[dependencies]
rustversion = { version = ">=1", optional = true }
[dev-dependencies]
once_cell = "=1.1.0"
[features]
# This optional feature lowers the minimum rustc version from 1.51 to 1.36.
# However this requires polyfilling std library functionality for older rustc
# with technically UB versions. Testing does not show older rustc versions
# (ab)using this. Use at
old_rust = ["rustversion"]