luks 0.2.4

Pure-Rust Library for the Linux Unified Key Setup
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 = "2024"
name = "luks"
version = "0.2.4"
build = false
include = [
    "src/",
    "examples/",
    "README.md",
    "LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust Library for the Linux Unified Key Setup"
homepage = "https://github.com/louib/luks-rs"
readme = "README.md"
license = "MIT"
repository = "https://github.com/louib/luks-rs"

[features]
_open = []
interactive = ["rpassword"]

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

[[bin]]
name = "create_fixture"
path = "src/bin/create_fixture.rs"
required-features = ["_open"]

[[bin]]
name = "verify_fixture"
path = "src/bin/verify_fixture.rs"
required-features = ["_open"]

[[example]]
name = "read_header"
path = "examples/read_header.rs"

[[example]]
name = "verify_passphrase"
path = "examples/verify_passphrase.rs"
required-features = [
    "_open",
    "interactive",
]

[dependencies.aes]
version = "0.8"

[dependencies.argon2]
version = "0.5"

[dependencies.base64]
version = "0.22"

[dependencies.byteorder]
version = "1.5"

[dependencies.hmac]
version = "0.12"

[dependencies.pbkdf2]
version = "0.12"

[dependencies.rand]
version = "0.9"

[dependencies.rpassword]
version = "7"
optional = true

[dependencies.secrecy]
version = "0.10"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2.0"

[dependencies.xts-mode]
version = "0.5"

[dev-dependencies]