• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 = "2021"
14rust-version = "1.61"
15name = "crossbeam-epoch"
16version = "0.9.18"
17description = "Epoch-based garbage collection"
18homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch"
19readme = "README.md"
20keywords = [
21    "lock-free",
22    "rcu",
23    "atomic",
24    "garbage",
25]
26categories = [
27    "concurrency",
28    "memory-management",
29    "no-std",
30]
31license = "MIT OR Apache-2.0"
32repository = "https://github.com/crossbeam-rs/crossbeam"
33
34[dependencies.crossbeam-utils]
35version = "0.8.18"
36default-features = false
37
38[dev-dependencies.rand]
39version = "0.8"
40
41[features]
42alloc = []
43default = ["std"]
44loom = [
45    "loom-crate",
46    "crossbeam-utils/loom",
47]
48nightly = ["crossbeam-utils/nightly"]
49std = [
50    "alloc",
51    "crossbeam-utils/std",
52]
53
54[target."cfg(crossbeam_loom)".dependencies.loom-crate]
55version = "0.7.1"
56optional = true
57package = "loom"
58