# 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 = "simplestcrypt" version = "0.1.4" authors = ["Kristoffer Ödmark "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Simplest way to perform a symmetric encryption, using a preshared key. Very small wrapper around aes-siv crate, with randomly generated nonces, for anything more advanced, use aes-siv instead" readme = "README.md" license = "MIT" repository = "https://github.com/TotalKrill/simplestcrypt" [lib] name = "simplestcrypt" path = "src/lib.rs" [[example]] name = "simple" path = "examples/simple.rs" [dependencies.aes-siv] version = "0.6" [dependencies.bincode] version = "1.3" [dependencies.rand] version = "0.8" [dependencies.serde] version = "1.0" features = ["derive"]