Skip to content

Commit

Permalink
Avoiding OpenSSL dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoromanos committed Dec 5, 2024
1 parent bd23063 commit f98fc5d
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 10 deletions.
152 changes: 143 additions & 9 deletions vdr/Cargo.lock

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

2 changes: 1 addition & 1 deletion vdr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ serde = "1.0.188"
serde_derive = "1.0.188"
serde_json = "1.0.107"
thiserror = "1.0.49"
web3 = { version = "0.20.0", optional = true }
web3 = { version = "0.20.0", optional = true, default-features = false, features = ["http-rustls-tls", "ws-rustls-tokio", "signing", "ipc-tokio"] }
web-sys = { version = "0.3.64", optional = true, features = ["Window"] }
web3-wasm = { package = "web3", version = "0.20.0", default-features = false, features = ["wasm", "http", "http-tls"], optional = true }
jsonrpc-core = "18.0.0"
Expand Down

0 comments on commit f98fc5d

Please sign in to comment.