-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
40 lines (35 loc) · 1.15 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "efivar"
version = "2.0.0"
authors = ["Vincent Tavernier <[email protected]>", "iTrooz <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/iTrooz/efivar-rs"
homepage = "https://github.com/iTrooz/efivar-rs"
documentation = "https://docs.rs/efivar"
keywords = ["efi"]
categories = []
description = """
Rust crate for manipulating EFI variables using the OS interface.
"""
edition = "2018"
[dependencies]
byteorder = "1.4.3"
bitflags = "2.3.3"
base64 = { version = "0.21.2", optional = true }
serde = { version = "1.0.171", optional = true }
serde_derive = { version = "1.0.164", optional = true }
toml = { version = "0.7.6", optional = true }
uuid = { version = "1.4.1", features = ["serde"] }
lazy_static = "1.4.0"
ntapi = "0.4.1"
winapi = { version = "0.3.9", features = ["errhandlingapi"] }
thiserror = "1.0.49"
rustix = { version = "0.38.30", features = ["fs"] }
[features]
store = ["base64", "serde", "serde_derive", "toml"]
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.9"
features = ["winbase", "winnt", "processthreadsapi", "securitybaseapi", "handleapi"]
[dev-dependencies]
version-sync = "0.9.4"