all: adding dotenv to all binary crates

This commit is contained in:
Dave Hrycyszyn
2020-01-22 17:27:30 +00:00
parent 1e8423b339
commit b5e2f9fca8
8 changed files with 10 additions and 0 deletions
Generated
+3
View File
@@ -1350,6 +1350,7 @@ dependencies = [
"curve25519-dalek",
"directory-client",
"dirs",
"dotenv",
"futures 0.3.1",
"healthcheck",
"hex",
@@ -1380,6 +1381,7 @@ dependencies = [
"clap",
"curve25519-dalek",
"directory-client",
"dotenv",
"futures 0.3.1",
"log",
"pretty_env_logger",
@@ -1397,6 +1399,7 @@ dependencies = [
"crypto",
"curve25519-dalek",
"directory-client",
"dotenv",
"futures 0.3.1",
"hex",
"hmac",
+1
View File
@@ -11,6 +11,7 @@ edition = "2018"
base64 = "0.11.0"
clap = "2.33.0"
curve25519-dalek = "1.2.3"
dotenv = "0.15.0"
futures = "0.3.1"
log = "0.4"
pretty_env_logger = "0.3"
+1
View File
@@ -6,6 +6,7 @@ mod mix_peer;
mod node;
fn main() {
dotenv::dotenv().ok();
pretty_env_logger::init();
let arg_matches = App::new("Nym Mixnode")
+1
View File
@@ -16,6 +16,7 @@ base64 = "0.11.0"
clap = "2.33.0"
curve25519-dalek = "1.2.3"
dirs = "2.0.2"
dotenv = "0.15.0"
futures = "0.3.1"
hex = "0.4.0"
log = "0.4"
+1
View File
@@ -7,6 +7,7 @@ pub mod config;
mod sockets;
fn main() {
dotenv::dotenv().ok();
pretty_env_logger::init();
let arg_matches = App::new("Nym Client")
+1
View File
@@ -11,6 +11,7 @@ edition = "2018"
base64 = "0.11.0"
clap = "2.33.0"
curve25519-dalek = "1.2.3"
dotenv = "0.15.0"
hex = "0.4.0"
futures = "0.3.1"
log = "0.4"
+1
View File
@@ -9,6 +9,7 @@ use std::process;
pub mod provider;
fn main() {
dotenv::dotenv().ok();
pretty_env_logger::init();
let arg_matches = App::new("Nym Service Provider")
+1
View File
@@ -8,6 +8,7 @@ use toml;
mod validator;
fn main() {
dotenv::dotenv().ok();
pretty_env_logger::init();
let arg_matches = App::new("Nym Validator")