forked from rust-osdev/uart_16550
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (26 loc) · 925 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
31
[package]
name = "uart_16550"
version = "0.2.18"
authors = ["Lachlan Sneff <[email protected]>", "Philipp Oppermann <[email protected]>"]
description = "Minimal support for uart_16550 serial output."
license = "MIT"
repository = "https://github.com/rust-osdev/uart_16550"
edition = "2018"
[dependencies]
bitflags = "1.1.0"
rustversion = "1.0.5"
[target.'cfg(target_arch = "x86_64")'.dependencies]
x86_64 = { version = "0.14.9", default-features = false, features = ["instructions"] }
[features]
default = []
# TOOD: Remove these deprecated features on next breaking release
stable = []
nightly = []
[package.metadata.release]
dev-version = false
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]
rustdoc-args = ["--cfg", "docsrs"]