aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorfx <[email protected]>2023-10-24 01:15:22 +0200
committerfx <[email protected]>2023-10-24 01:15:22 +0200
commitdcfb83fb2069bfcf4642b03453253e35479bf3da (patch)
treeccdacf40274227e86a8294558347aeea43b1724f /Cargo.lock
parentd9d7b125e4fcaa3aedd7b57a69e6880e012ccf33 (diff)
downloadwebol-dcfb83fb2069bfcf4642b03453253e35479bf3da.tar
webol-dcfb83fb2069bfcf4642b03453253e35479bf3da.tar.gz
webol-dcfb83fb2069bfcf4642b03453253e35479bf3da.zip
first ping impl baseline, doesnt work
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock117
1 files changed, 117 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 09f5744..bf813bf 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -89,6 +89,7 @@ checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
89dependencies = [ 89dependencies = [
90 "async-trait", 90 "async-trait",
91 "axum-core", 91 "axum-core",
92 "base64 0.21.4",
92 "bitflags 1.3.2", 93 "bitflags 1.3.2",
93 "bytes", 94 "bytes",
94 "futures-util", 95 "futures-util",
@@ -107,8 +108,10 @@ dependencies = [
107 "serde_json", 108 "serde_json",
108 "serde_path_to_error", 109 "serde_path_to_error",
109 "serde_urlencoded", 110 "serde_urlencoded",
111 "sha1",
110 "sync_wrapper", 112 "sync_wrapper",
111 "tokio", 113 "tokio",
114 "tokio-tungstenite",
112 "tower", 115 "tower",
113 "tower-layer", 116 "tower-layer",
114 "tower-service", 117 "tower-service",
@@ -294,6 +297,12 @@ dependencies = [
294] 297]
295 298
296[[package]] 299[[package]]
300name = "data-encoding"
301version = "2.4.0"
302source = "registry+https://github.com/rust-lang/crates.io-index"
303checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
304
305[[package]]
297name = "der" 306name = "der"
298version = "0.7.8" 307version = "0.7.8"
299source = "registry+https://github.com/rust-lang/crates.io-index" 308source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -517,6 +526,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
517checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 526checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
518 527
519[[package]] 528[[package]]
529name = "glob"
530version = "0.3.1"
531source = "registry+https://github.com/rust-lang/crates.io-index"
532checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
533
534[[package]]
520name = "hashbrown" 535name = "hashbrown"
521version = "0.12.3" 536version = "0.12.3"
522source = "registry+https://github.com/rust-lang/crates.io-index" 537source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -843,6 +858,12 @@ dependencies = [
843] 858]
844 859
845[[package]] 860[[package]]
861name = "no-std-net"
862version = "0.6.0"
863source = "registry+https://github.com/rust-lang/crates.io-index"
864checksum = "43794a0ace135be66a25d3ae77d41b91615fb68ae937f904090203e81f755b65"
865
866[[package]]
846name = "nom" 867name = "nom"
847version = "7.1.3" 868version = "7.1.3"
848source = "registry+https://github.com/rust-lang/crates.io-index" 869source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1115,6 +1136,48 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1115checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1136checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
1116 1137
1117[[package]] 1138[[package]]
1139name = "pnet_base"
1140version = "0.33.0"
1141source = "registry+https://github.com/rust-lang/crates.io-index"
1142checksum = "872e46346144ebf35219ccaa64b1dffacd9c6f188cd7d012bd6977a2a838f42e"
1143dependencies = [
1144 "no-std-net",
1145]
1146
1147[[package]]
1148name = "pnet_macros"
1149version = "0.33.0"
1150source = "registry+https://github.com/rust-lang/crates.io-index"
1151checksum = "2a780e80005c2e463ec25a6e9f928630049a10b43945fea83207207d4a7606f4"
1152dependencies = [
1153 "proc-macro2",
1154 "quote",
1155 "regex",
1156 "syn 1.0.109",
1157]
1158
1159[[package]]
1160name = "pnet_macros_support"
1161version = "0.33.0"
1162source = "registry+https://github.com/rust-lang/crates.io-index"
1163checksum = "e6d932134f32efd7834eb8b16d42418dac87086347d1bc7d142370ef078582bc"
1164dependencies = [
1165 "pnet_base",
1166]
1167
1168[[package]]
1169name = "pnet_packet"
1170version = "0.33.0"
1171source = "registry+https://github.com/rust-lang/crates.io-index"
1172checksum = "8bde678bbd85cb1c2d99dc9fc596e57f03aa725f84f3168b0eaf33eeccb41706"
1173dependencies = [
1174 "glob",
1175 "pnet_base",
1176 "pnet_macros",
1177 "pnet_macros_support",
1178]
1179
1180[[package]]
1118name = "powerfmt" 1181name = "powerfmt"
1119version = "0.2.0" 1182version = "0.2.0"
1120source = "registry+https://github.com/rust-lang/crates.io-index" 1183source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1694,6 +1757,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1694checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 1757checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
1695 1758
1696[[package]] 1759[[package]]
1760name = "surge-ping"
1761version = "0.8.0"
1762source = "registry+https://github.com/rust-lang/crates.io-index"
1763checksum = "af341b2be485d647b5dc4cfb2da99efac35b5c95748a08fb7233480fedc5ead3"
1764dependencies = [
1765 "hex",
1766 "parking_lot",
1767 "pnet_packet",
1768 "rand",
1769 "socket2 0.5.5",
1770 "thiserror",
1771 "tokio",
1772 "tracing",
1773]
1774
1775[[package]]
1697name = "syn" 1776name = "syn"
1698version = "1.0.109" 1777version = "1.0.109"
1699source = "registry+https://github.com/rust-lang/crates.io-index" 1778source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1850,6 +1929,18 @@ dependencies = [
1850] 1929]
1851 1930
1852[[package]] 1931[[package]]
1932name = "tokio-tungstenite"
1933version = "0.20.1"
1934source = "registry+https://github.com/rust-lang/crates.io-index"
1935checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c"
1936dependencies = [
1937 "futures-util",
1938 "log",
1939 "tokio",
1940 "tungstenite",
1941]
1942
1943[[package]]
1853name = "toml" 1944name = "toml"
1854version = "0.5.11" 1945version = "0.5.11"
1855source = "registry+https://github.com/rust-lang/crates.io-index" 1946source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1956,6 +2047,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1956checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 2047checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
1957 2048
1958[[package]] 2049[[package]]
2050name = "tungstenite"
2051version = "0.20.1"
2052source = "registry+https://github.com/rust-lang/crates.io-index"
2053checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9"
2054dependencies = [
2055 "byteorder",
2056 "bytes",
2057 "data-encoding",
2058 "http",
2059 "httparse",
2060 "log",
2061 "rand",
2062 "sha1",
2063 "thiserror",
2064 "url",
2065 "utf-8",
2066]
2067
2068[[package]]
1959name = "typenum" 2069name = "typenum"
1960version = "1.17.0" 2070version = "1.17.0"
1961source = "registry+https://github.com/rust-lang/crates.io-index" 2071source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2012,6 +2122,12 @@ dependencies = [
2012] 2122]
2013 2123
2014[[package]] 2124[[package]]
2125name = "utf-8"
2126version = "0.7.6"
2127source = "registry+https://github.com/rust-lang/crates.io-index"
2128checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2129
2130[[package]]
2015name = "valuable" 2131name = "valuable"
2016version = "0.1.0" 2132version = "0.1.0"
2017source = "registry+https://github.com/rust-lang/crates.io-index" 2133source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2054,6 +2170,7 @@ dependencies = [
2054 "serde", 2170 "serde",
2055 "serde_json", 2171 "serde_json",
2056 "sqlx", 2172 "sqlx",
2173 "surge-ping",
2057 "time", 2174 "time",
2058 "tokio", 2175 "tokio",
2059 "tracing", 2176 "tracing",