-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
53 lines (49 loc) · 1.86 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "moros"
description = "MOROS: Obscure Rust Operating System"
version = "0.10.4"
authors = ["Vincent Ollivier <v@vinc.cc>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/vinc/moros"
readme = "README.md"
default-run = "moros"
[features]
default = ["video"]
video = []
serial = []
userspace = []
[dependencies]
acpi = "5.0.0"
aml = "0.16.4"
base64 = { version = "0.22.1", default-features = false, features = ["alloc"] }
bit_field = "0.10.2"
bootloader = { version = "0.9.29", features = ["map_physical_memory"] }
lazy_static = { version = "1.5.0", features = ["spin_no_std"] }
libm = "0.2.11"
linked_list_allocator = "0.10.5"
littlewing = { version = "0.7.0", default-features = false }
nom = { version = "7.1.3", default-features = false, features = ["alloc"] }
num-bigint = { version = "0.4.6", default-features = false }
num-traits = { version = "0.2.19", default-features = false }
object = { version = "0.36.5", default-features = false, features = ["read"] }
pbkdf2 = { version = "0.12.2", default-features = false, features = ["hmac"] }
pc-keyboard = "0.6.1"
pic8259 = "0.11.0"
rand = { version = "0.8.5", default-features = false }
rand_hc = "0.3.1"
raw-cpuid = "11.2.0"
sha2 = { version = "0.10.8", default-features = false, features = ["force-soft"] }
smoltcp = { version = "0.11.0", default-features = false, features = ["alloc", "medium-ethernet", "socket-tcp", "socket-udp", "socket-dhcpv4", "proto-ipv4", "proto-dhcpv4"] }
spin = "0.9.8"
time = { version = "0.2.27", default-features = false }
geodate = { version = "0.5.0", default-features = false }
uart_16550 = "0.3.1"
vte = "0.13.0"
x86_64 = "0.15.1"
[package.metadata.bootloader]
physical-memory-offset = "0xFFFF800000000000"
kernel-stack-address = "0xFFFFFF8000000000"
boot-info-address = "0xFFFFFFFF80000000"
[package.metadata.bootimage]
test-success-exit-code = 33 # (0x10 << 1) | 1