vga/Cargo.toml

25 lines
655 B
TOML
Raw Normal View History

2020-03-12 17:10:18 +00:00
[package]
name = "vga"
2020-03-19 15:06:46 +00:00
version = "0.1.2"
2020-03-12 17:10:18 +00:00
authors = ["Ryan Kennedy <rkennedy9064@gmail.com>"]
edition = "2018"
2020-03-12 22:30:32 +00:00
description = "Support for vga specific functions, data structures, and registers."
2020-03-13 04:41:00 +00:00
documentation = "https://docs.rs/vga"
2020-03-12 22:30:32 +00:00
keywords = [
"vga",
"no_std",
]
categories = [
"no-std",
]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/rust-osdev/vga"
2020-03-12 17:10:18 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-03-12 18:34:48 +00:00
conquer-once = { version = "0.2.0", default-features = false }
spinning_top = { version = "0.1.0", features = ["nightly"] }
2020-03-12 17:10:18 +00:00
x86_64 = "0.9.6"