1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14name = "self_cell"
15version = "1.0.2"
16authors = ["Lukas Bergdoll <lukas.bergdoll@gmail.com>"]
17include = [
18 "src/*.rs",
19 "Cargo.toml",
20 "README.md",
21 "LICENSE",
22]
23description = "Safe-to-use proc-macro-free self-referential structs in stable Rust."
24documentation = "https://docs.rs/self_cell"
25readme = "README.md"
26keywords = [
27 "lifetime",
28 "borrowing",
29 "self",
30 "reference",
31 "intrusive",
32]
33categories = [
34 "rust-patterns",
35 "memory-management",
36]
37license = "Apache-2.0"
38repository = "https://github.com/Voultapher/self_cell"
39
40[dependencies.rustversion]
41version = ">=1"
42optional = true
43
44[dev-dependencies.once_cell]
45version = "=1.1.0"
46
47[features]
48old_rust = ["rustversion"]
49