-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 867 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "bin-encrypt-decrypt"
version = "2.2.5"
edition = "2021"
authors = ["ltpp-universe <[email protected]>"]
license = "MIT"
description = "A high-performance binary encryption and decryption library that supports customizable character sets beyond Base64."
keywords = ["binaryencryption", "decryption", "customcharset", "highperformance", "base64alternative"]
repository = "https://github.com/ltpp-universe/bin-crypt-decrypt"
categories = ["cryptography", "encoding"]
[dependencies]
std-macro-extensions = "0.20.4"
[dev-dependencies]
color-output = "6.1.6"
[profile.dev]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"
backtrace = "off"
[profile.release]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"
backtrace = "off"