mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-19 10:30:17 +00:00
feat(sprout): introduce no_std sprout which uses stable rust
This commit is contained in:
33
Cargo.toml
33
Cargo.toml
@@ -13,16 +13,39 @@ repository = "https://github.com/edera-dev/sprout"
|
||||
edition = "2024"
|
||||
|
||||
[workspace.dependencies]
|
||||
anyhow = "1.0.100"
|
||||
bitflags = "2.10.0"
|
||||
hex = "0.4.3"
|
||||
log = "0.4.28"
|
||||
serde = "1.0.228"
|
||||
sha2 = "0.10.9"
|
||||
toml = "0.9.8"
|
||||
spin = "0.10.0"
|
||||
uefi = "0.36.0"
|
||||
uefi-raw = "0.12.0"
|
||||
|
||||
[workspace.dependencies.anyhow]
|
||||
version = "1.0.100"
|
||||
default-features = false
|
||||
|
||||
[workspace.dependencies.hex]
|
||||
version = "0.4.3"
|
||||
default-features = false
|
||||
features = ["alloc"]
|
||||
|
||||
[workspace.dependencies.serde]
|
||||
version = "1.0.228"
|
||||
default-features = false
|
||||
features = ["alloc", "derive"]
|
||||
|
||||
[workspace.dependencies.sha2]
|
||||
version = "0.10.9"
|
||||
default-features = false
|
||||
|
||||
[workspace.dependencies.shlex]
|
||||
version = "1.3.0"
|
||||
default-features = false
|
||||
|
||||
[workspace.dependencies.toml]
|
||||
version = "0.9.8"
|
||||
default-features = false
|
||||
features = ["serde", "parse"]
|
||||
|
||||
# Common build profiles
|
||||
# NOTE: We have to compile everything for opt-level = 2 due to optimization passes
|
||||
# which don't handle the UEFI target properly.
|
||||
|
||||
Reference in New Issue
Block a user