-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 1.11 KB
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 = "uart_16550"
version = "0.6.0"
description = """
Simple yet highly configurable low-level driver for 16550 UART devices,
typically known and used as serial ports or COM ports. Easy integration into
Rust while providing fine-grained control where needed (e.g., for kernel
drivers).
"""
edition = "2024"
rust-version = "1.85.1"
keywords = ["uart-16550", "serial", "com", "driver", "tty"]
categories = ["embedded", "hardware-support", "no-std", "no-std::no-alloc"]
readme = "README.md"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rust-osdev/uart_16550"
repository = "https://github.com/rust-osdev/uart_16550"
documentation = "https://docs.rs/uart_16550"
authors = [
"Philipp Schuster <phip1611@gmail.com>",
]
resolver = "3"
[dependencies]
bitflags = { version = "2.11", default-features = false, features = [] }
embedded-io = { version = "0.7", optional = true }
[dev-dependencies]
assert2 = { version = "0.4.0", default-features = false, features = [] }
[features]
default = []
embedded-io = ["dep:embedded-io"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]