mirror of
https://github.com/anvie/litcrypt.rs
synced 2026-06-08 13:12:05 +00:00
e4c656e693
Add lc_env to encrypt environment variables at compile time
23 lines
516 B
TOML
23 lines
516 B
TOML
[package]
|
|
name = "litcrypt"
|
|
authors = ['Robin Syihab (r@ansvia.com)']
|
|
version = "0.4.0"
|
|
description = "Let's encrypt your string statically during compile time"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/anvie/litcrypt.rs"
|
|
readme = "README.md"
|
|
keywords = ["litcrypt", "encrypt", "compile"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
path = "src/litcrypt.rs"
|
|
|
|
[dev-dependencies]
|
|
expectest = { version = "0.12.0", features = [] }
|
|
|
|
[dependencies]
|
|
quote = "1.0.8"
|
|
proc-macro2 = "1.0.24"
|
|
rand = "0.8.5"
|
|
lazy_static = "^1.4.0"
|