[package]
edition = "2021"
name = "caesar_cipher_enc_dec"
version = "1.0.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "can easily use caesar cipher"
homepage = "https://github.com/T3pp31/caesar_cipher_enc_dec"
documentation = "https://docs.rs/caesar_cipher_enc_dec"
readme = "README.md"
license = "MIT"
repository = "https://github.com/T3pp31/caesar_cipher_enc_dec"
[lib]
name = "caesar_cipher_enc_dec"
path = "src/lib.rs"
[[bin]]
name = "caesar_cipher_enc_dec"
path = "src/main.rs"
[[test]]
name = "cli_output_tests"
path = "tests/cli_output_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "decrypt_safe_overflow_tests"
path = "tests/decrypt_safe_overflow_tests.rs"
[[test]]
name = "decrypt_tests"
path = "tests/decrypt_tests.rs"
[[test]]
name = "encrypt_tests"
path = "tests/encrypt_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "roundtrip_tests"
path = "tests/roundtrip_tests.rs"
[[test]]
name = "safe_api_tests"
path = "tests/safe_api_tests.rs"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3.0"