Skip to content

Commit

Permalink
try ssl fix
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante committed Mar 21, 2024
1 parent bcd8c3d commit 8351f56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ log = { workspace = true }
env_logger = { workspace = true }
git2 = { workspace = true }
regex = { workspace = true }
openssl = { workspace = true, features = ["vendored"] }
openssl = { version = "0.10", features = ["vendored"] }
marzano-core = { path = "../core", features = [
"non_wasm",
], default-features = false }
Expand Down
4 changes: 3 additions & 1 deletion crates/gritmodule/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ serde = { workspace = true, features = ["derive"] }
serde_yaml = { workspace = true }
anyhow = { workspace = true }
rand = { workspace = true }
git2 = { workspace = true, features = ["vendored-openssl"] }
git2 = { version = "0.17.2", default-features = false, features = [
"vendored-openssl",
] }
lazy_static = { workspace = true }
regex = { workspace = true }
markdown = { workspace = true }
Expand Down

0 comments on commit 8351f56

Please sign in to comment.