diff options
author | Linnnus <[email protected]> | 2024-10-02 08:01:57 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-10-02 08:03:19 +0200 |
commit | b6e1137d89a90859d8943d9377e4d14091a11af6 (patch) | |
tree | ee46b50505e1c5b50de932d9fdeb7bd662c07975 /Cargo.lock | |
parent | f5c119fdaf444fc0b1b59c1e07fd32a5f6ddf069 (diff) |
Rename secret_{file => path}, add max_idle_time to config, Merge {Raw,}Config
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -261,6 +261,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] +name = "humantime" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" + +[[package]] +name = "humantime-serde" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c" +dependencies = [ + "humantime", + "serde", +] + +[[package]] name = "hyper" version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -688,6 +704,7 @@ version = "0.1.0" dependencies = [ "hmac", "http-body-util", + "humantime-serde", "hyper", "hyper-util", "lazy_static", |