31 lines
827 B
TOML
31 lines
827 B
TOML
[package]
|
|
name = "vga"
|
|
version = "0.2.2"
|
|
authors = ["Ryan Kennedy <rkennedy9064@gmail.com>"]
|
|
edition = "2018"
|
|
description = "Support for vga specific functions, data structures, and registers."
|
|
documentation = "https://docs.rs/vga"
|
|
keywords = [
|
|
"vga",
|
|
"no_std",
|
|
]
|
|
categories = [
|
|
"no-std",
|
|
]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/rust-osdev/vga"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bitflags = "1.2.1"
|
|
conquer-once = { version = "0.2.0", default-features = false }
|
|
font8x8 = { version = "0.2.5", default-features = false, features = ["unicode"] }
|
|
spinning_top = { version = "0.1.0", features = ["nightly"] }
|
|
x86_64 = "0.9.6"
|
|
|
|
[dependencies.num-traits]
|
|
version = "0.2.11"
|
|
default-features = false
|