# 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" rust-version = "1.65" name = "encrypt-stuff" version = "0.2.1" authors = ["Ben Pawlowski ben@pepski.com"] build = false exclude = [".github"] autobins = false autoexamples = false autotests = false autobenches = false description = "Encrypt serializable data" readme = "README.md" keywords = [ "encryption", "serialization", ] categories = ["cryptography"] license = "MIT" repository = "https://github.com/BenPski/encrypt-stuff" [lib] name = "encrypt_stuff" path = "src/lib.rs" [dependencies.aead] version = "0.5.2" features = [ "alloc", "getrandom", "std", ] [dependencies.aes-gcm] version = "0.10.3" optional = true default-features = false [dependencies.aes-gcm-siv] version = "0.11.1" optional = true default-features = false [dependencies.bincode] version = "1.3.3" optional = true [dependencies.bitcode] version = "0.6.3" features = ["serde"] optional = true [dependencies.boring-derive] version = "0.1.1" [dependencies.chacha20poly1305] version = "0.10.1" optional = true default-features = false [dependencies.secrecy] version = "0.8.0" features = ["serde"] [dependencies.serde] version = "1.0.208" features = ["derive"] [dependencies.thiserror] version = "1.0.63" [features] aes128gcm = ["aes-gcm/aes"] aes128gcmsiv = ["aes-gcm-siv/aes"] aes256gcm = ["aes-gcm/aes"] aes256gcmsiv = ["aes-gcm-siv/aes"] bincode = ["dep:bincode"] bitcode = ["bitcode/serde"] chacha12poly1305 = ["chacha20poly1305/reduced-round"] chacha20poly1305 = ["dep:chacha20poly1305"] chacha8poly1305 = ["chacha20poly1305/reduced-round"] default = [ "aes256gcm", "bitcode", ] xchacha12poly1305 = ["chacha20poly1305/reduced-round"] xchacha20poly1305 = ["dep:chacha20poly1305"] xchacha8poly1305 = ["chacha20poly1305/reduced-round"]