chore: update dependencies
This commit is contained in:
		
							
								
								
									
										17
									
								
								Cargo.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										17
									
								
								Cargo.lock
									
									
									
										generated
									
									
									
								
							@ -332,9 +332,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "libc"
 | 
			
		||||
version = "0.2.93"
 | 
			
		||||
version = "0.2.94"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41"
 | 
			
		||||
checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "lock_api"
 | 
			
		||||
@ -542,9 +542,9 @@ dependencies = [
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "protobuf"
 | 
			
		||||
version = "2.22.1"
 | 
			
		||||
version = "2.23.0"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "1b7f4a129bb3754c25a4e04032a90173c68f85168f77118ac4cb4936e7f06f92"
 | 
			
		||||
checksum = "45604fc7a88158e7d514d8e22e14ac746081e7a70d7690074dd0029ee37458d6"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "quote"
 | 
			
		||||
@ -700,12 +700,11 @@ dependencies = [
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "time"
 | 
			
		||||
version = "0.1.44"
 | 
			
		||||
version = "0.1.43"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
 | 
			
		||||
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "libc",
 | 
			
		||||
 "wasi",
 | 
			
		||||
 "winapi",
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
@ -837,9 +836,9 @@ dependencies = [
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "wasi"
 | 
			
		||||
version = "0.10.0+wasi-snapshot-preview1"
 | 
			
		||||
version = "0.10.2+wasi-snapshot-preview1"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
 | 
			
		||||
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "winapi"
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										28
									
								
								Cargo.toml
									
									
									
									
									
								
							
							
						
						
									
										28
									
								
								Cargo.toml
									
									
									
									
									
								
							@ -6,18 +6,18 @@ edition = "2018"
 | 
			
		||||
description = "Pings configured hosts in a configurable intervals and exposes metrics for prometheus."
 | 
			
		||||
 | 
			
		||||
[dependencies]
 | 
			
		||||
prometheus = "0.12.0"
 | 
			
		||||
toml = "0.5.8"
 | 
			
		||||
hyper = { version = "0.14.7", features = ["full"] }
 | 
			
		||||
lazy_static = "1.4.0"
 | 
			
		||||
futures = "0.3.14"
 | 
			
		||||
tokio = { version = "1.5.0", features = ["rt-multi-thread", "macros", "time"] }
 | 
			
		||||
clap = "2.33.3"
 | 
			
		||||
fern = "0.6.0"
 | 
			
		||||
log = "0.4.14"
 | 
			
		||||
chrono = "0.4.19"
 | 
			
		||||
serde = { version = "1.0.125", features = ["derive"] }
 | 
			
		||||
prometheus = "0.12"
 | 
			
		||||
toml = "0.5"
 | 
			
		||||
hyper = { version = "0.14", features = ["full"] }
 | 
			
		||||
lazy_static = "1"
 | 
			
		||||
futures = "0.3"
 | 
			
		||||
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
 | 
			
		||||
clap = "2"
 | 
			
		||||
fern = "0.6"
 | 
			
		||||
log = "0.4"
 | 
			
		||||
chrono = "0.4"
 | 
			
		||||
serde = { version = "1", features = ["derive"] }
 | 
			
		||||
tokio-icmp-echo = "0.4"
 | 
			
		||||
futures-util = "0.3.14"
 | 
			
		||||
anyhow = "1.0.40"
 | 
			
		||||
async-anyhow-logger = "0.1.0"
 | 
			
		||||
futures-util = "0.3"
 | 
			
		||||
anyhow = "1"
 | 
			
		||||
async-anyhow-logger = "0.1"
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user