-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
30 lines (25 loc) · 905 Bytes
/
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
[package]
name = "volatile"
version = "0.4.6"
authors = ["Philipp Oppermann <[email protected]>"]
license = "MIT OR Apache-2.0"
keywords = ["volatile"]
description = "Volatile wrapper types for raw pointers"
documentation = "https://docs.rs/volatile"
repository = "https://github.com/rust-osdev/volatile"
edition = "2021"
[dependencies]
[features]
# 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]
features = ["unstable"]