-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
37 lines (31 loc) · 1.11 KB
/
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
30
31
32
33
34
35
36
37
[package]
name = "volatile"
version = "0.6.1"
authors = ["Philipp Oppermann <[email protected]>"]
license = "MIT OR Apache-2.0"
keywords = ["volatile"]
categories = ["no-std", "no-std::no-alloc"]
description = "Volatile wrapper types for raw pointers"
documentation = "https://docs.rs/volatile"
repository = "https://github.com/rust-osdev/volatile"
edition = "2021"
[dependencies]
volatile-macro = { version = "=0.6.0", optional = true, path = "volatile-macro" }
[features]
derive = ["dep:volatile-macro"]
# Enable unstable features; requires Rust nightly; might break on compiler updates
unstable = []
# Enable unstable and experimental features; requires Rust nightly; might break on compiler updates
very_unstable = ["unstable"]
[dev-dependencies]
rand = "0.8.3"
[package.metadata.release]
pre-release-replacements = [
{ file = "Changelog.md", search = "# Unreleased", replace = "# Unreleased\n\n# {{version}} – {{date}}", exactly = 1 },
]
pre-release-commit-message = "Release version {{version}}"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace]
members = ["volatile-macro"]