[package]
edition = "2021"
name = "playfair_cipher"
version = "1.0.6"
authors = ["Stefan Dörig <sdoerig@bluewin.ch>"]
build = false
exclude = [".github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of Playfair, Two square and Four square cipher"
homepage = "https://github.com/sdoerig/playfair_cipher"
documentation = "https://docs.rs/playfair_cipher"
readme = "README.md"
keywords = [
"Cipher",
"Playfair",
"Cryptography",
"Four_square",
"Two_square",
]
categories = ["cryptography"]
license = "AGPL-3.0-or-later"
repository = "https://github.com/sdoerig/playfair_cipher"
[lib]
name = "playfair_cipher"
path = "src/lib.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[dependencies.rustc-hash]
version = "2.1.1"
[dev-dependencies.criterion]
version = "0.6"
[dev-dependencies.rand]
version = "0.9.2"