Skip to content

Commit

Permalink
Merge pull request #10 from unbekanntes-pferd/chore/dependencies
Browse files Browse the repository at this point in the history
bump dependencies, move to tracing
  • Loading branch information
unbekanntes-pferd committed Mar 22, 2024
2 parents 9575ecc + f8e79bc commit 35ef90e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dco3_crypto"
version = "0.5.1"
version = "0.6.0"
edition = "2021"
authors = ["Octavio Simone"]
repository = "https://github.com/unbekanntes-pferd/dco3-crypto"
Expand All @@ -14,7 +14,7 @@ description = "Symmetric and asymmetric encryption for DRACOON in Rust."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log = "0.4.17"
serde_json = "1.0.89"
serde = { version = "1.0.149", features = ["serde_derive"] }
openssl = { version = "0.10.45", features = ["vendored"] }
tracing = "0.1.40"
serde_json = "1"
serde = { version = "1", features = ["serde_derive"] }
openssl = { version = "0.10.64", features = ["vendored"] }
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use openssl::pkey_ctx::PkeyCtx;
use openssl::rsa::{Padding, Rsa};
use openssl::symm::{decrypt_aead, encrypt_aead, Cipher, Crypter as OpenSslCrypter, Mode};

use log::{debug, error};
use tracing::{debug, error};

mod models;

Expand Down

0 comments on commit 35ef90e

Please sign in to comment.