[package] name = "enveloper" version = "0.2.0" edition = "2021" license = "GPL-3.0" readme = "README.md" description = "A very simple envelope encryption library using aes-gcm" repository = "https://github.com/cipherstash/enveloper" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dev-dependencies] hex-literal = "0.3.2" hex = "0.4.3" tokio = { version = "1.17.0", features = [ "macros", "rt-multi-thread" ] } aws-config = "0.10.1" aws-smithy-client = { version = "0.40.2", features = [ "test-util" ] } aws-smithy-http = "0.40.2" http = "0.2" base64 = "0.13.0" [dependencies] aes-gcm = "0.9.4" rand = "0.8.5" rand_chacha = "0.3.1" serde = { version = "1.0.136", features = ["derive"] } serde_cbor = "0.11.2" thiserror = "1.0.30" async-trait = "0.1.53" aws-sdk-kms = "0.10.1"