Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 111 lines 2.6 kB view raw
1diff --git a/Cargo.lock b/Cargo.lock 2index 23604c99e5..58355d867e 100644 3--- a/Cargo.lock 4+++ b/Cargo.lock 5@@ -223,7 +223,7 @@ 6 "http", 7 "hyper", 8 "ring", 9- "time 0.3.28", 10+ "time 0.3.36", 11 "tokio", 12 "tower", 13 "tracing", 14@@ -393,7 +393,7 @@ 15 "percent-encoding", 16 "regex", 17 "sha2", 18- "time 0.3.28", 19+ "time 0.3.36", 20 "tracing", 21 ] 22 23@@ -533,7 +533,7 @@ 24 "itoa", 25 "num-integer", 26 "ryu", 27- "time 0.3.28", 28+ "time 0.3.36", 29 ] 30 31 [[package]] 32@@ -932,9 +932,12 @@ 33 34 [[package]] 35 name = "deranged" 36-version = "0.3.8" 37+version = "0.3.11" 38 source = "registry+https://github.com/rust-lang/crates.io-index" 39-checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" 40+checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 41+dependencies = [ 42+ "powerfmt", 43+] 44 45 [[package]] 46 name = "derivative" 47@@ -2410,6 +2413,12 @@ 48 ] 49 50 [[package]] 51+name = "num-conv" 52+version = "0.1.0" 53+source = "registry+https://github.com/rust-lang/crates.io-index" 54+checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 55+ 56+[[package]] 57 name = "num-integer" 58 version = "0.1.45" 59 source = "registry+https://github.com/rust-lang/crates.io-index" 60@@ -2747,6 +2756,12 @@ 61 ] 62 63 [[package]] 64+name = "powerfmt" 65+version = "0.2.0" 66+source = "registry+https://github.com/rust-lang/crates.io-index" 67+checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 68+ 69+[[package]] 70 name = "ppv-lite86" 71 version = "0.2.17" 72 source = "registry+https://github.com/rust-lang/crates.io-index" 73@@ -3666,11 +3681,13 @@ 74 75 [[package]] 76 name = "time" 77-version = "0.3.28" 78+version = "0.3.36" 79 source = "registry+https://github.com/rust-lang/crates.io-index" 80-checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" 81+checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 82 dependencies = [ 83 "deranged", 84+ "num-conv", 85+ "powerfmt", 86 "serde", 87 "time-core", 88 "time-macros", 89@@ -3678,16 +3695,17 @@ 90 91 [[package]] 92 name = "time-core" 93-version = "0.1.1" 94+version = "0.1.2" 95 source = "registry+https://github.com/rust-lang/crates.io-index" 96-checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 97+checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 98 99 [[package]] 100 name = "time-macros" 101-version = "0.2.14" 102+version = "0.2.18" 103 source = "registry+https://github.com/rust-lang/crates.io-index" 104-checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" 105+checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 106 dependencies = [ 107+ "num-conv", 108 "time-core", 109 ] 110 111