blob: f39ecd52feb3ea248891b452d64a3b804f2e7e9b [file] [log] [blame]
[package]
name = "crdyboot"
edition = "2018"
resolver = "2"
# These two fields are also used when generating sbat.csv.
repository = "https://chromium.googlesource.com/crdyboot"
version = "1.0.0"
[dependencies]
log = "0.4"
# TODO: the current 0.11.0 release doesn't everything we need yet, once a
# new release is out switch these two deps back to crates.io.
uefi = { git = "https://github.com/rust-osdev/uefi-rs.git", branch = "master", features = ["exts", "ignore-logger-errors"] }
uefi-services = { git = "https://github.com/rust-osdev/uefi-rs.git", branch = "master" }
vboot = { path = "../vboot" }
[patch.crates-io]
# This is needed to fix uefi-services' dep on uefi
uefi = { git = "https://github.com/rust-osdev/uefi-rs.git", branch = "master" }
[features]
# If enabled, a test key in the repo will be used to validate the kernel. If
# disabled (the default), a key must be provided in this file (relative to
# the repo root): "keys/kernel_key.vbpubk".
use_test_key = []
# If enabled, the max log level is set to Debug. If disabled (the default),
# the max log level is set to Warn.
verbose = []
[profile.release]
overflow-checks = true