File tree 8 files changed +10
-0
lines changed
8 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ edition = "2018"
11
11
base64 = " 0.11.0"
12
12
clap = " 2.33.0"
13
13
curve25519-dalek = " 1.2.3"
14
+ dotenv = " 0.15.0"
14
15
futures = " 0.3.1"
15
16
log = " 0.4"
16
17
pretty_env_logger = " 0.3"
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ mod mix_peer;
6
6
mod node;
7
7
8
8
fn main ( ) {
9
+ dotenv:: dotenv ( ) . ok ( ) ;
9
10
pretty_env_logger:: init ( ) ;
10
11
11
12
let arg_matches = App :: new ( "Nym Mixnode" )
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ base64 = "0.11.0"
16
16
clap = " 2.33.0"
17
17
curve25519-dalek = " 1.2.3"
18
18
dirs = " 2.0.2"
19
+ dotenv = " 0.15.0"
19
20
futures = " 0.3.1"
20
21
hex = " 0.4.0"
21
22
log = " 0.4"
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ pub mod config;
7
7
mod sockets;
8
8
9
9
fn main ( ) {
10
+ dotenv:: dotenv ( ) . ok ( ) ;
10
11
pretty_env_logger:: init ( ) ;
11
12
12
13
let arg_matches = App :: new ( "Nym Client" )
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ edition = "2018"
11
11
base64 = " 0.11.0"
12
12
clap = " 2.33.0"
13
13
curve25519-dalek = " 1.2.3"
14
+ dotenv = " 0.15.0"
14
15
hex = " 0.4.0"
15
16
futures = " 0.3.1"
16
17
log = " 0.4"
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ use std::process;
9
9
pub mod provider;
10
10
11
11
fn main ( ) {
12
+ dotenv:: dotenv ( ) . ok ( ) ;
12
13
pretty_env_logger:: init ( ) ;
13
14
14
15
let arg_matches = App :: new ( "Nym Service Provider" )
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ use toml;
8
8
mod validator;
9
9
10
10
fn main ( ) {
11
+ dotenv:: dotenv ( ) . ok ( ) ;
11
12
pretty_env_logger:: init ( ) ;
12
13
13
14
let arg_matches = App :: new ( "Nym Validator" )
You can’t perform that action at this time.
0 commit comments