# 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 = "tc_tea" version = "0.2.0" authors = ["Jixun Wu "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Rusty implementation of Tencent's varient of TEA (tc_tea)." readme = "README.md" keywords = [ "tea", "tencent", ] categories = ["cryptography"] license = "MIT OR Apache-2.0" repository = "https://github.com/jixunmoe/tc_tea_rust/" [lib] name = "tc_tea" path = "src/lib.rs" [dependencies.byteorder] version = "1.5.0" [dependencies.rand] version = "0.8.5" optional = true [dependencies.rand_chacha] version = "0.3.1" optional = true [dependencies.rand_pcg] version = "0.3.1" optional = true [dependencies.thiserror] version = "1.0.63" [features] default = [ "random", "random_secure", ] random = [ "rand", "rand_pcg", ] random_secure = [ "rand/getrandom", "rand/rand_chacha", "rand_chacha", ] [badges.maintenance] status = "as-is"