-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
small implementation changes for debugging
- Loading branch information
Showing
2 changed files
with
137 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,66 @@ | ||
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO | ||
# | ||
# When uploading crates to the registry Cargo will automatically | ||
# "normalize" Cargo.toml files for maximal compatibility | ||
# with all versions of Cargo and also rewrite `path` dependencies | ||
# to registry (e.g., crates.io) dependencies. | ||
# | ||
# If you are reading this file be aware that the original Cargo.toml | ||
# will likely look very different (and much more reasonable). | ||
# See Cargo.toml.orig for the original contents. | ||
|
||
[package] | ||
name = "crypt_guard" | ||
version = "1.1.6" | ||
edition = "2021" | ||
name = "crypt_guard" | ||
version = "1.1.5" | ||
description = "CryptGuardLib is a comprehensive Rust library designed for strong encryption and decryption, incorporating post-quantum cryptography to safeguard against quantum threats. It's geared towards developers who need to embed advanced cryptographic capabilities in their Rust applications." | ||
readme = "README.md" | ||
license = "MIT" | ||
repository = "https://github.com/mm9942/CryptGuardLib" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
aes = "0.8.3" | ||
env = "0.0.0" | ||
hex = "0.4.3" | ||
hmac = "0.12.1" | ||
pqcrypto-falcon = { version = "0.3.0" } | ||
pqcrypto-traits = "0.3.5" | ||
rand = "0.8.5" | ||
sha2 = "0.10.8" | ||
tokio = { version = "1.35.1", features = ["full"], optional = true } | ||
chacha20 = "0.9.1" | ||
pqcrypto-dilithium = "0.5.0" | ||
pqcrypto-kyber = "0.8.1" | ||
tempfile = "3.10.1" | ||
chrono = "0.4.37" | ||
# notify-rust = "4.10.0" | ||
[dependencies.aes] | ||
version = "0.8.3" | ||
|
||
[dependencies.chacha20] | ||
version = "0.9.1" | ||
|
||
[dependencies.chrono] | ||
version = "0.4.37" | ||
|
||
[dependencies.env] | ||
version = "0.0.0" | ||
|
||
[dependencies.hex] | ||
version = "0.4.3" | ||
|
||
[dependencies.hmac] | ||
version = "0.12.1" | ||
|
||
[dependencies.pqcrypto-dilithium] | ||
version = "0.5.0" | ||
|
||
[dependencies.pqcrypto-falcon] | ||
version = "0.3.0" | ||
|
||
[dependencies.pqcrypto-kyber] | ||
version = "0.8.1" | ||
|
||
[dependencies.pqcrypto-traits] | ||
version = "0.3.5" | ||
|
||
[dependencies.rand] | ||
version = "0.8.5" | ||
|
||
[dependencies.sha2] | ||
version = "0.10.8" | ||
|
||
[dependencies.tempfile] | ||
version = "3.10.1" | ||
|
||
[dependencies.tokio] | ||
version = "1.35.1" | ||
features = ["full"] | ||
optional = true | ||
|
||
[features] | ||
tokio = ["dep:tokio"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters