vga/Cargo.toml

31 lines
828 B
TOML
Raw Normal View History

2020-03-12 12:10:18 -05:00
[package]
name = "vga"
2021-02-14 21:31:21 -06:00
version = "0.2.6"
2020-03-12 12:10:18 -05:00
authors = ["Ryan Kennedy <rkennedy9064@gmail.com>"]
edition = "2018"
2020-03-12 17:30:32 -05:00
description = "Support for vga specific functions, data structures, and registers."
2020-03-12 23:41:00 -05:00
documentation = "https://docs.rs/vga"
2020-03-12 17:30:32 -05: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 12:10:18 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-03-21 22:05:53 -05: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 17:03:41 -05:00
[dependencies.num-traits]
2020-10-30 15:11:43 -05:00
version = "0.2.14"
2020-03-23 17:03:41 -05:00
default-features = false