aes 0.6.0

Facade for AES (Rijndael) block ciphers implementations
Documentation
[package]
name = "aes"
version = "0.6.0"
description = "Facade for AES (Rijndael) block ciphers implementations"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2018"
documentation = "https://docs.rs/aes"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "aes", "rijndael", "block-cipher"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = "0.2"

[target.'cfg(not(all(target_feature="aes", target_feature = "sse2", any(target_arch = "x86_64", target_arch = "x86"))))'.dependencies]
aes-soft = { version = "0.6", path = "aes-soft" }

[target.'cfg(all(target_feature="aes", target_feature = "sse2", any(target_arch = "x86_64", target_arch = "x86")))'.dependencies]
aesni = { version = "0.10", default-features = false, path = "aesni" }

[dev-dependencies]
cipher = { version = "0.2", features = ["dev"] }