mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-19 20:20:17 +00:00
Bumps the cargo-updates group with 1 update: [toml](https://github.com/toml-rs/toml). Updates `toml` from 0.9.7 to 0.9.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.9.7...toml-v0.9.8) --- updated-dependencies: - dependency-name: toml dependency-version: 0.9.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-updates ... Signed-off-by: dependabot[bot] <support@github.com>
61 lines
1.1 KiB
TOML
61 lines
1.1 KiB
TOML
[package]
|
|
name = "edera-sprout"
|
|
description = "Modern UEFI bootloader"
|
|
license = "Apache-2.0"
|
|
version = "0.0.4"
|
|
homepage = "https://sprout.edera.dev"
|
|
repository = "https://github.com/edera-dev/sprout"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
toml = "0.9.8"
|
|
log = "0.4.28"
|
|
|
|
[dependencies.image]
|
|
version = "0.25.6"
|
|
default-features = false
|
|
features = ["png"]
|
|
optional = true
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.228"
|
|
features = ["derive"]
|
|
|
|
[dependencies.uefi]
|
|
version = "0.35.0"
|
|
features = ["alloc", "logger"]
|
|
|
|
[dependencies.uefi-raw]
|
|
version = "0.11.0"
|
|
|
|
[features]
|
|
default = ["splash"]
|
|
splash = ["dep:image"]
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
strip = "symbols"
|
|
|
|
[profile.release-debuginfo]
|
|
inherits = "release"
|
|
strip = "none"
|
|
debug = 1
|
|
|
|
[profile.dev-fast]
|
|
inherits = "dev"
|
|
strip = "debuginfo"
|
|
debug = 0
|
|
|
|
[patch.crates-io.simd-adler32]
|
|
git = "https://github.com/edera-dev/sprout-patched-deps.git"
|
|
rev = "2c4fcc84b50d40c28f540d4271109ea0ca7e1268"
|
|
|
|
[patch.crates-io.moxcms]
|
|
git = "https://github.com/edera-dev/sprout-patched-deps.git"
|
|
rev = "2c4fcc84b50d40c28f540d4271109ea0ca7e1268"
|
|
|
|
[[bin]]
|
|
name = "sprout"
|
|
path = "src/main.rs"
|