Files
sprout/Cargo.toml
dependabot[bot] 1326a2df34 chore(deps): bump the cargo-updates group across 1 directory with 6 updates
Bumps the cargo-updates group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bitflags](https://github.com/bitflags/bitflags) | `2.11.1` | `2.13.0` |
| [log](https://github.com/rust-lang/log) | `0.4.29` | `0.4.33` |
| spin | `0.11.0` | `0.12.1` |
| [uefi-raw](https://github.com/rust-osdev/uefi-rs) | `0.14.0` | `0.15.0` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.102` | `1.0.103` |
| [uefi](https://github.com/rust-osdev/uefi-rs) | `0.37.0` | `0.38.0` |



Updates `bitflags` from 2.11.1 to 2.13.0
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bitflags/bitflags/compare/2.11.1...2.13.0)

Updates `log` from 0.4.29 to 0.4.33
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/log/compare/0.4.29...0.4.33)

Updates `spin` from 0.11.0 to 0.12.1

Updates `uefi-raw` from 0.14.0 to 0.15.0
- [Release notes](https://github.com/rust-osdev/uefi-rs/releases)
- [Changelog](https://github.com/rust-osdev/uefi-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-osdev/uefi-rs/compare/uefi-raw-v0.14.0...uefi-raw-v0.15.0)

Updates `anyhow` from 1.0.102 to 1.0.103
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.102...1.0.103)

Updates `uefi` from 0.37.0 to 0.38.0
- [Release notes](https://github.com/rust-osdev/uefi-rs/releases)
- [Changelog](https://github.com/rust-osdev/uefi-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-osdev/uefi-rs/compare/uefi-v0.37.0...uefi-v0.38.0)

---
updated-dependencies:
- dependency-name: bitflags
  dependency-version: 2.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-updates
- dependency-name: log
  dependency-version: 0.4.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-updates
- dependency-name: spin
  dependency-version: 0.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-updates
- dependency-name: uefi-raw
  dependency-version: 0.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-updates
- dependency-name: anyhow
  dependency-version: 1.0.103
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-updates
- dependency-name: uefi
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-06 09:08:01 +00:00

82 lines
1.5 KiB
TOML

[workspace]
members = [
"crates/boot",
"crates/build",
"crates/config",
"crates/eficore",
"crates/bls",
"crates/parsing",
]
resolver = "3"
[workspace.package]
license = "Apache-2.0"
version = "0.0.28"
homepage = "https://sprout.edera.dev"
repository = "https://github.com/edera-dev/sprout"
edition = "2024"
[workspace.dependencies]
bitflags = "2.11.1"
log = "0.4.29"
spin = "0.12.1"
uefi-raw = "0.15.0"
[workspace.dependencies.anyhow]
version = "1.0.102"
default-features = false
[workspace.dependencies.hex]
version = "0.4.3"
default-features = false
features = ["alloc"]
[workspace.dependencies.jaarg]
version = "0.2.2"
default-features = false
features = ["alloc"]
[workspace.dependencies.serde]
version = "1.0.228"
default-features = false
features = ["alloc", "derive"]
[workspace.dependencies.sha2]
version = "0.11.0"
default-features = false
[workspace.dependencies.shlex]
version = "2.0.1"
default-features = false
[workspace.dependencies.toml]
version = "1.1.2"
default-features = false
features = ["serde", "parse"]
[workspace.dependencies.uefi]
version = "0.38.0"
default-features = false
features = ["alloc", "global_allocator", "panic_handler"]
# 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.
[profile.dev]
opt-level = 2
[profile.release]
lto = "thin"
strip = "symbols"
[profile.release-debuginfo]
inherits = "release"
strip = "none"
debug = 1
[profile.dev-fast]
inherits = "dev"
strip = "debuginfo"
debug = 0
opt-level = 2