-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
80 lines (72 loc) · 2.74 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
cargo-features = ["per-package-target", "edition2024"]
[package]
name = "cryptos"
version = "0.1.2-alpha"
edition = "2024"
forced-target = "x86_64-unknown-none"
license = "GPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"runner",
"hmfsprogs"
]
[dependencies]
acpi = { git = "https://github.com/rust-osdev/acpi" }
aml = { git = "https://github.com/rust-osdev/acpi" }
bit = "0.1.1"
bit_field = "0.10.1"
bitflags = "2.4.0"
bitvec = { version = "1.0.1", default-features = false, features = ["alloc", "atomic"] }
bootloader-x86_64-common = "^0.11.7"
bootloader_api = "^0.11.7"
btrfs-diskformat = "0.4.0"
byteorder = { version = "1.4.3", default-features = false }
conquer-once = { version = "^0.4.0", default-features = false }
embedded-graphics = { version = "0.8.1", features = ["nalgebra_support"] }
embedded-graphics-core = { version = "0.4.0", features = ["nalgebra_support"] }
embedded-layout = "^0.4.1"
fatfs = { git = "https://github.com/rafalh/rust-fatfs", version = "0.4.0", default-features = false }
hashbrown = { version = "^0.14.1", default-features = false, features = ["inline-more"] }
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
libflate = { version = "2.0.0", default-features = false }
log = { version = "0.4.17", default-features = false }
minipng = { version = "0.1.1", features = ["adler"] }
mr-mime = { version = "0.1.1", default-features = false, features = ["alloc"] }
nalgebra = { version = "0.32.1", default-features = false }
noto-sans-mono-bitmap = "0.3.0"
num-traits = { version = "0.2.17", default-features = false }
pcics = "0.3.1"
rand_core = { version = "0.6.4", features = ["alloc"] }
raw-cpuid = "11.0.1"
redox_syscall = "0.5.0"
sha3 = { version = "0.10.6", default-features = false }
slab_allocator_rs = "1.0.1"
spin = "0.9.4"
spinning_top = "0.3.0"
strum = { version = "0.26.1", default-features = false }
tinybmp = "0.5.0"
u8g2-fonts = { version = "0.4.0", default-features = false, features = ["embedded_graphics_textstyle"] }
unix_path = { version = "1.0.1", default-features = false, features = ["alloc"] }
usb_hid_item = { git = "https://github.com/rust-osdev/usb" }
usb_hid_usage = { git = "https://github.com/rust-osdev/usb" }
usb_request = { git = "https://github.com/rust-osdev/usb" }
x2apic = "0.4.1"
x86_64 = "0.15.0"
xhci = "0.9.1"
xmas-elf = "^0.9.0"
zerocopy = { version = "0.4.0" }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
debug = true
debug-assertions = true
overflow-checks = true
incremental = true
codegen-units = 256
[patch.crates-io]
redox_syscall = { git = "https://gitlab.redox-os.org/redox-os/syscall" }
hashbrown = { git = "https://github.com/rust-lang/hashbrown" }
[features]
shutdown_on_panic = []