vga/Cargo.toml

31 lines
828 B
TOML
Raw Normal View History

2020-03-12 17:10:18 +00:00
[package]
name = "vga"
2020-05-21 21:56:17 +00:00
version = "0.2.4"
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-22 03:05:53 +00:00
bitflags = "1.2.1"
2020-03-12 18:34:48 +00:00
conquer-once = { version = "0.2.0", default-features = false }
2020-03-24 20:44:30 +00:00
font8x8 = { version = "0.2.5", default-features = false, features = ["unicode"] }
2020-03-12 18:34:48 +00:00
spinning_top = { version = "0.1.0", features = ["nightly"] }
2020-05-21 21:56:17 +00:00
x86_64 = "0.11.0"
2020-03-23 22:03:41 +00:00
[dependencies.num-traits]
version = "0.2.11"
default-features = false