vga/Cargo.toml

31 lines
828 B
TOML
Raw Normal View History

2020-03-12 17:10:18 +00:00
[package]
name = "vga"
2021-02-15 03:31:21 +00:00
version = "0.2.6"
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"
conquer-once = { version = "0.3.2", default-features = false }
font8x8 = { version = "0.3.1", default-features = false, features = ["unicode"] }
spinning_top = { version = "0.2.4", features = ["nightly"] }
x86_64 = "0.14.2"
2020-03-23 22:03:41 +00:00
[dependencies.num-traits]
2020-10-30 20:11:43 +00:00
version = "0.2.14"
2020-03-23 22:03:41 +00:00
default-features = false