# 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 = "2021" name = "encodex" version = "0.2.0" authors = ["Fabian Moos "] build = false publish = ["crates-io"] autobins = false autoexamples = false autotests = false autobenches = false description = "Implementation of and cryptanalysis tool for legacy and modern codes, ciphers and hashes." homepage = "https://gitlab.com/moose_dev/encodex" readme = "README.md" license = "GPL-3.0-or-later" repository = "https://gitlab.com/moose_dev/encodex.git" [lib] name = "encodex" path = "src/lib.rs" [[bin]] name = "encodex" path = "src/main.rs" [features] all = [ "all_crypto", "ui", ] all_crypto = [ "base16", "base32", "base32hex", "base64", "base64url", "caesar", "vigenere", ] base16 = ["base_encoding"] base32 = ["base_encoding"] base32hex = ["base_encoding"] base64 = ["base_encoding"] base64url = ["base_encoding"] base_encoding = ["code"] caesar = ["shift_cipher"] cipher = [] code = [] cryptanalysis = [] digest = [] doc_tests = [] hex = ["base_encoding"] sha2 = ["digest"] sha256 = ["sha2"] shift_cipher = ["cipher"] ui = [] vigenere = ["shift_cipher"] vigenere_ca = [ "vigenere", "cryptanalysis", ]