Skip to content

Commit

Permalink
rust-client: add tls support with dummy verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
elenaf9 authored and dennis-tra committed Aug 9, 2022
1 parent c476515 commit ca9a86d
Show file tree
Hide file tree
Showing 3 changed files with 2,623 additions and 4 deletions.
7 changes: 5 additions & 2 deletions rust-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ env_logger = "0.9"
either = "1.6.1"
futures = "0.3"
futures-timer = "2"
hyper = "0.14.20"
hyper-rustls = { version = "0.23.0", features = ["http2"] }
libp2p = { version = "0.43.0", default-features = false, features = ["dcutr", "dns-async-std", "identify", "noise", "relay", "ping", "tcp-async-io", "yamux"] }
log = "0.4"
prost = "0.9"
clap = {version = "3.1.6", features = ["derive"]}
clap = { version = "3.1.6", features = ["derive"]}
rustls = { version = "0.20.6", features = ["dangerous_configuration"] }
tokio = { version = "1.0", features = [ "rt-multi-thread", "time", "fs", "macros", "net",] }
tonic = "0.6"
tonic = { version = "0.6", features = ["tls"] }

[build-dependencies]
tonic-build = "0.6"
Loading

0 comments on commit ca9a86d

Please sign in to comment.