-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
90 lines (70 loc) · 1.76 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
81
82
83
84
85
86
87
88
89
90
[package]
name = "d7os"
version = "0.1.0"
authors = ["Hannes Karppila <[email protected]>"]
publish = false
edition = "2018"
# https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2
resolver = "2"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[profile.release.package.d7os]
debug-assertions = true
overflow-checks = true
[profile.release.package.allogator]
debug-assertions = true
overflow-checks = true
[features]
self-test = [] # Run automatic tests and shutdown
[dependencies]
spin = "0.9"
bitflags = "1.3"
bit_field = "0.10.0"
volatile = "0.2.6"
static_assertions = "1.1"
pinecone = "0.2"
log = "0.4"
acpi = "4.1.0"
aml = "0.16.1"
[dependencies.cpuio]
git = "https://github.com/Dentosal/cpuio-rs"
[dependencies.hashbrown]
version = "0.11"
features = ["nightly", "inline-more", "serde"]
[dependencies.serde]
version = "1.0"
default-features = false
features = ["alloc", "derive"]
[dependencies.sha2]
version = "0.10"
default-features = false
features = ["force-soft"]
[dependencies.ed25519-dalek]
# Open PR https://github.com/dalek-cryptography/ed25519-dalek/pull/189
git = "https://github.com/Dentosal/ed25519-dalek"
branch = "update-deps"
default-features = false
features = ["u64_backend", "rand", "sha2-force-soft"]
[dependencies.rand_core]
version = "0.6"
default-features = false
features = ["alloc"]
[dependencies.lazy_static]
version = "1.4"
features = ["spin_no_std"]
[dependencies.x86_64]
git = "https://github.com/Dentosal/x86_64"
features = ["use-serde"]
[dependencies.d7abi]
version = "*"
path = "libs/d7abi"
[dependencies.allogator]
git = "https://github.com/Dentosal/allogator"
features = ["extra-checks"]
[dependencies.d7initrd]
version = "*"
path = "libs/d7initrd"
[dev-dependencies]
rand = "0.8"