Skip to content

Commit

Permalink
fix: openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-segning committed Aug 13, 2024
1 parent cc61760 commit 66b3e15
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 147 deletions.
2 changes: 1 addition & 1 deletion scripts/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function ErrorExit {
# Default WOPS_VERSION to the latest if not provided
$WOPS_VERSION = $env:WOPS_VERSION
if (-not $WOPS_VERSION) {
$WOPS_VERSION = "0.1.4"
$WOPS_VERSION = "0.1.5"
}

# Set the app configuration folder and bin directory
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ error_exit() {
}

# Default WOPS_VERSION to the latest if not provided
WOPS_VERSION=${WOPS_VERSION:-"0.1.4"}
WOPS_VERSION=${WOPS_VERSION:-"0.1.5"}

# Determine the OS and set paths accordingly
case "$(uname)" in
Expand Down
78 changes: 12 additions & 66 deletions wazuh-cert-oauth2-client/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions wazuh-cert-oauth2-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[package]
name = "wazuh-cert-oauth2-client"
version = "0.1.1"
version = "0.1.2"
edition = "2021"

[dependencies]
tokio = { version = "1.38.1", features = ["full"] }
tokio = { version = "1.38.1", features = ["windows-sys", "macros", "rt-multi-thread", "fs"] }
anyhow = "1.0.86"
thiserror = "1.0.63"
log = "0.4.22"
env_logger = "0.11.3"
structopt = "0"
oauth2 = "4.4.2"
reqwest = { version = "0", features = ["json"] }
wazuh-cert-oauth2-model = { path = "../wazuh-cert-oauth2-model" }
wazuh-cert-oauth2-model = { path = "../wazuh-cert-oauth2-model" }
openssl = { version = "0.10.66", features = ["vendored"] }
24 changes: 0 additions & 24 deletions wazuh-cert-oauth2-client/sslagent.cert

This file was deleted.

52 changes: 0 additions & 52 deletions wazuh-cert-oauth2-client/sslagent.key

This file was deleted.

0 comments on commit 66b3e15

Please sign in to comment.