diff options
author | fxqnlr <[email protected]> | 2024-06-13 16:54:35 +0200 |
---|---|---|
committer | fxqnlr <[email protected]> | 2024-06-13 16:54:35 +0200 |
commit | c124f9fff690a42ea5fb490e4c7e512ba8448951 (patch) | |
tree | f17edd2042d2dc713f3dd6b0bdabbbb2444fc863 /src/config.rs | |
parent | 04cd0aee6d000073e49b80a530a40cdb176f7f10 (diff) | |
download | webol-c124f9fff690a42ea5fb490e4c7e512ba8448951.tar webol-c124f9fff690a42ea5fb490e4c7e512ba8448951.tar.gz webol-c124f9fff690a42ea5fb490e4c7e512ba8448951.zip |
cargo update + `time` update, fix for `Instant` deprecation
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs index bfb28be..7c91c08 100644 --- a/src/config.rs +++ b/src/config.rs | |||
@@ -7,7 +7,7 @@ use crate::auth; | |||
7 | pub struct Config { | 7 | pub struct Config { |
8 | pub serveraddr: String, | 8 | pub serveraddr: String, |
9 | pub pingtimeout: i64, | 9 | pub pingtimeout: i64, |
10 | pub pingthreshold: i64, | 10 | pub pingthreshold: u64, |
11 | pub timeoffset: i8, | 11 | pub timeoffset: i8, |
12 | pub auth: Auth, | 12 | pub auth: Auth, |
13 | } | 13 | } |