[package]
edition = "2024"
rust-version = "1.87"
name = "short-crypt"
version = "1.0.29"
authors = ["Magic Len <len@magiclen.org>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ShortCrypt is a very simple deterministic encryption library, which aims to encrypt any data into something random at first glance."
homepage = "https://magiclen.org/short-crypt"
readme = "README.md"
keywords = [
"crypto",
"qrcode",
"url",
"encrypt",
"decrypt",
]
categories = [
"no-std",
"algorithms",
"cryptography",
]
license = "MIT"
repository = "https://github.com/magiclen/rust-short-crypt"
[lib]
name = "short_crypt"
path = "src/lib.rs"
[dependencies.base32]
version = "0.5"
[dependencies.base64-url]
version = "3"
[dependencies.crc-any]
version = "3"
default-features = false