mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-19 10:30:17 +00:00
57 lines
986 B
TOML
57 lines
986 B
TOML
[package]
|
|
name = "edera-sprout"
|
|
version = "0.0.2"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
toml = "0.9.7"
|
|
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"
|