xts-mode 0.6.0

XTS block mode implementation in rust
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"
rust-version = "1.85"
name = "xts-mode"
version = "0.6.0"
authors = ["Aphek <bilkow@tutanota.com>"]
build = false
exclude = ["test_files"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "XTS block mode implementation in rust"
documentation = "https://docs.rs/xts-mode"
readme = "README.md"
keywords = [
    "encryption",
    "xts",
    "block-cipher",
]
categories = [
    "cryptography",
    "no-std",
]
license = "MIT"
repository = "https://github.com/pheki/xts-mode"

[features]
benchmarks = ["dep:criterion"]
openssl_tests = ["dep:openssl"]

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

[[test]]
name = "encryption"
path = "tests/encryption.rs"

[[bench]]
name = "encryption"
path = "benches/encryption.rs"
harness = false

[dependencies.cipher]
version = "0.5.1"

[dependencies.criterion]
version = "0.8.2"
optional = true

[dependencies.openssl]
version = "0.10.78"
optional = true

[dev-dependencies.aes]
version = "0.9.0"

[dev-dependencies.hex-literal]
version = "1.1.0"

[dev-dependencies.rand]
version = "0.10.1"