crypter 0.1.2

A AES-GCM 256 encryption and decryption library.
Documentation
[package]
name = "crypter"
version = "0.1.2"
authors = [ "Marcelo Lima <marcelowind@gmail.com>" ]
edition = "2021"
readme = "README.md"
repository = "https://github.com/m-lima/crypter"
keywords = [ "cryptography", "aes" ]
categories = [ "cryptography" ]
description = "A AES-GCM 256 encryption and decryption library."
license = "MIT"

[package.metadata.docs.rs]
all-features = true

[lib]
path = "src/lib.rs"
crate-type = [ "cdylib", "lib" ]

[profile.release]
lto = true
codegen-units = 1

[dependencies]
aes-gcm = "0.10.2"
base64 = "0.21.4"
getrandom = { version = "0.2.10", optional = true }
js-sys = { version = "0.3.64", optional = true }
rand = "0.8.5"
sha2 = "0.10.7"
wasm-bindgen = { version = "0.2.87", optional = true }

[features]
default = []
ffi = []
wasm = [ "wasm-bindgen", "js-sys", "getrandom/js" ]