efivar-fix 2.0.1

Rust crate for manipulating EFI variables using the OS interface.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "efivar-fix"
version = "2.0.1"
authors = [
    "Alixinne <alixinne@pm.me>",
    "iTrooz <cratesio@itrooz.fr>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Rust crate for manipulating EFI variables using the OS interface.
"""
homepage = "https://github.com/iTrooz/efivar-rs"
documentation = "https://docs.rs/efivar"
readme = "README.md"
keywords = ["efi"]
categories = []
license = "MIT"
repository = "https://github.com/iTrooz/efivar-rs"

[features]
serde = ["dep:serde"]
store = [
    "base64",
    "serde",
    "toml",
]

[lib]
name = "efivar_fix"
path = "src/lib.rs"

[[test]]
name = "version-numbers"
path = "tests/version-numbers.rs"

[dependencies.base64]
version = "0.21.2"
optional = true

[dependencies.bitflags]
version = "2.3.3"

[dependencies.byteorder]
version = "1.4.3"

[dependencies.lazy_static]
version = "1.4.0"

[dependencies.log]
version = "0.4.27"

[dependencies.serde]
version = "1.0.171"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "1.0.49"

[dependencies.toml]
version = "0.7.6"
optional = true

[dependencies.uuid]
version = "1.4.1"
features = ["serde"]

[dev-dependencies.version-sync]
version = "0.9.4"

[target."cfg(unix)".dependencies.rustix]
version = "0.38.30"
features = ["fs"]

[target."cfg(windows)".dependencies.ntapi]
version = "0.4.1"

[target."cfg(windows)".dependencies.winapi]
version = "0.3.9"
features = [
    "winbase",
    "errhandlingapi",
    "winnt",
    "processthreadsapi",
    "securitybaseapi",
    "handleapi",
]