-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 741 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 741 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
[package]
name = "atomic_swapping"
version = "0.1.0"
authors = ["buzzec <buzzec@buzzec.net>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "An arbitrary type atomic storage with swap operations"
homepage = "https://github.com/Buzzec/atomic_swapping"
repository = "https://github.com/Buzzec/atomic_swapping"
readme = "README.md"
categories = ["data-structures"]
keywords = ["atomic"]
exclude = [
".idea/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dev-dependencies]
rand = "0.8.3"
[features]
default = []
# Always uses unreachable! macro instead of ureachable_unchecked().
# Mainly for if you use unsafe logic around this.
never_unchecked = []