Initialised crate for the validator with health checker

This commit is contained in:
Jedrzej Stuczynski
2020-01-07 14:29:22 +00:00
parent 1e719a8861
commit 4d67d11a39
4 changed files with 18 additions and 1 deletions
Generated
+4
View File
@@ -1165,6 +1165,10 @@ dependencies = [
"tokio 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "nym-validator"
version = "0.1.0"
[[package]]
name = "opaque-debug"
version = "0.2.3"
+2 -1
View File
@@ -4,5 +4,6 @@ members = [
"client",
"mixnode",
"sfw-provider",
"sfw-provider/sfw-provider-requests"
"sfw-provider/sfw-provider-requests",
"validator",
]
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "nym-validator"
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]
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}