moros/Cargo.toml

43 lines
1.2 KiB
TOML

[package]
name = "moros"
description = "MOROS: Obscure Rust Operating System"
version = "0.4.0"
authors = ["Vincent Ollivier <v@vinc.cc>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/vinc/moros"
readme = "README.md"
[features]
default = ["vga", "qwerty", "rtl8139"]
vga = []
serial = []
qwerty = []
dvorak = []
rtl8139 = []
pcnet = []
[dependencies]
acpi = "2.0.0"
aml = "0.9.0"
array-macro = "1.0.5"
base64 = { version = "0.12.3", default-features = false }
bit_field = "0.10.0"
bootloader = { version = "0.9.5", features = ["map_physical_memory"] }
hmac = { version = "0.7.1", default-features = false }
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
libm = "0.2.1"
linked_list_allocator = "0.8.4"
pbkdf2 = { version = "0.3.0", default-features = false }
pc-keyboard = "0.5.1"
pic8259_simple = "0.2.0"
raw-cpuid = "8.1.0"
sha2 = { version = "0.8.2", default-features = false }
smoltcp = { version = "0.6.0", default-features = false, features = ["alloc", "ethernet", "socket-tcp", "socket-udp", "proto-ipv4", "proto-dhcpv4"] }
spin = "0.7.0"
uart_16550 = "0.2.7"
volatile = "0.2.6"
vte = "0.8.0"
x86_64 = "0.12.2"
time = { version = "0.2.22", default-features = false }