Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame] | 1 | [package] |
| 2 | name = "compile_with_bazel" |
| 3 | version = "0.0.0" |
| 4 | |
| 5 | # Mandatory (or Cargo tooling is unhappy) |
| 6 | [lib] |
| 7 | path = "fake_lib.rs" |
| 8 | |
| 9 | [dependencies] |
| 10 | uefi = { version = "0.24.0", features = ["alloc"] } |
| 11 | uefi-services = "0.21.0" |
| 12 | prost = { version = "0.12", default-features = false, features = ["prost-derive"] } |
| 13 | prost-types = { version = "0.12", default-features = false } |
| 14 | |
| 15 | [package.metadata.raze] |
| 16 | workspace_path = "//third_party/rust_efi/cargo" |
| 17 | package_aliases_dir = "." |
| 18 | gen_workspace_prefix = "rsefi" |
| 19 | targets = [ |
| 20 | "x86_64-unknown-uefi", |
| 21 | "x86_64-unknown-linux-gnu", # proc macros |
| 22 | ] |
| 23 | genmode = "Remote" |
| 24 | |
| 25 | [package.metadata.raze.crates.prost.'0.12.1'] |
| 26 | data_dependencies = [ |
| 27 | "README.md", |
| 28 | ] |