-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
31 lines (27 loc) · 846 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
[package]
name = "shush-rs"
version = "0.1.11"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A Rust crate designed to manage sensitive data securely by leveraging memory protection mechanisms."
repository = "https://github.com/Eyob94/shush-rs"
readme = "README.md"
keywords = ["secret", "memory", "protection", "privacy"]
categories = ["memory-management"]
exclude = [".github/"]
[dependencies]
zeroize = "1.8.1"
[target.'cfg(unix)'.dependencies]
libc = "0.2.158"
errno = "0.3.9"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59.0", default-features = false, features = [
"Win32_System_SystemInformation",
"Win32_System_Memory",
"Win32_Foundation",
"Win32_System_Diagnostics_Debug",
"Win32_System",
"Win32_System_Diagnostics_Debug_Extensions",
] }
[profile.release]
panic = "abort"