cache-padded/Cargo.toml

17 lines
567 B
TOML
Raw Permalink Normal View History

2020-05-25 22:47:42 +00:00
[package]
name = "cache-padded"
2021-12-19 05:44:16 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
version = "1.3.0"
2020-05-25 22:47:42 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
2022-01-08 13:40:45 +00:00
rust-version = "1.31"
2020-05-25 22:47:42 +00:00
description = "Prevent false sharing by padding and aligning to the length of a cache line"
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/cache-padded"
homepage = "https://github.com/smol-rs/cache-padded"
2020-05-25 22:47:42 +00:00
keywords = ["cache", "padding", "lock-free", "atomic"]
categories = ["concurrency", "no-std"]
2022-01-08 13:40:45 +00:00
exclude = ["/.*"]