Created the multi-tcp-client crate
This commit is contained in:
Generated
+8
@@ -1359,6 +1359,14 @@ dependencies = [
|
||||
"serde_json",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "multi-tcp-client"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"futures 0.3.1",
|
||||
"tokio 0.2.10",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "native-tls"
|
||||
version = "0.2.3"
|
||||
|
||||
@@ -6,6 +6,7 @@ panic = "abort"
|
||||
members = [
|
||||
"common/clients/directory-client",
|
||||
"common/clients/mix-client",
|
||||
"common/clients/multi-tcp-client",
|
||||
"common/clients/provider-client",
|
||||
"common/clients/validator-client",
|
||||
"common/addressing",
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
[package]
|
||||
name = "multi-tcp-client"
|
||||
version = "0.1.0"
|
||||
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
||||
edition = "2018"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
futures = "0.3"
|
||||
tokio = { version = "0.2", features = ["full"] }
|
||||
Reference in New Issue
Block a user