]> code.octet-stream.net Git - netwatcher/blob - Cargo.lock
List interfaces on Mac
[netwatcher] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 3
4
5 [[package]]
6 name = "autocfg"
7 version = "1.3.0"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
10
11 [[package]]
12 name = "bitflags"
13 version = "2.5.0"
14 source = "registry+https://github.com/rust-lang/crates.io-index"
15 checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
16
17 [[package]]
18 name = "cfg-if"
19 version = "1.0.0"
20 source = "registry+https://github.com/rust-lang/crates.io-index"
21 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
22
23 [[package]]
24 name = "cfg_aliases"
25 version = "0.2.1"
26 source = "registry+https://github.com/rust-lang/crates.io-index"
27 checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
28
29 [[package]]
30 name = "libc"
31 version = "0.2.155"
32 source = "registry+https://github.com/rust-lang/crates.io-index"
33 checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
34
35 [[package]]
36 name = "memoffset"
37 version = "0.9.1"
38 source = "registry+https://github.com/rust-lang/crates.io-index"
39 checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
40 dependencies = [
41 "autocfg",
42 ]
43
44 [[package]]
45 name = "netwatcher"
46 version = "0.1.0"
47 dependencies = [
48 "nix",
49 "windows",
50 ]
51
52 [[package]]
53 name = "nix"
54 version = "0.29.0"
55 source = "registry+https://github.com/rust-lang/crates.io-index"
56 checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
57 dependencies = [
58 "bitflags",
59 "cfg-if",
60 "cfg_aliases",
61 "libc",
62 "memoffset",
63 ]
64
65 [[package]]
66 name = "proc-macro2"
67 version = "1.0.84"
68 source = "registry+https://github.com/rust-lang/crates.io-index"
69 checksum = "ec96c6a92621310b51366f1e28d05ef11489516e93be030060e5fc12024a49d6"
70 dependencies = [
71 "unicode-ident",
72 ]
73
74 [[package]]
75 name = "quote"
76 version = "1.0.36"
77 source = "registry+https://github.com/rust-lang/crates.io-index"
78 checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
79 dependencies = [
80 "proc-macro2",
81 ]
82
83 [[package]]
84 name = "syn"
85 version = "2.0.66"
86 source = "registry+https://github.com/rust-lang/crates.io-index"
87 checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5"
88 dependencies = [
89 "proc-macro2",
90 "quote",
91 "unicode-ident",
92 ]
93
94 [[package]]
95 name = "unicode-ident"
96 version = "1.0.12"
97 source = "registry+https://github.com/rust-lang/crates.io-index"
98 checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
99
100 [[package]]
101 name = "windows"
102 version = "0.56.0"
103 source = "registry+https://github.com/rust-lang/crates.io-index"
104 checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132"
105 dependencies = [
106 "windows-core",
107 "windows-targets",
108 ]
109
110 [[package]]
111 name = "windows-core"
112 version = "0.56.0"
113 source = "registry+https://github.com/rust-lang/crates.io-index"
114 checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6"
115 dependencies = [
116 "windows-implement",
117 "windows-interface",
118 "windows-result",
119 "windows-targets",
120 ]
121
122 [[package]]
123 name = "windows-implement"
124 version = "0.56.0"
125 source = "registry+https://github.com/rust-lang/crates.io-index"
126 checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b"
127 dependencies = [
128 "proc-macro2",
129 "quote",
130 "syn",
131 ]
132
133 [[package]]
134 name = "windows-interface"
135 version = "0.56.0"
136 source = "registry+https://github.com/rust-lang/crates.io-index"
137 checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc"
138 dependencies = [
139 "proc-macro2",
140 "quote",
141 "syn",
142 ]
143
144 [[package]]
145 name = "windows-result"
146 version = "0.1.1"
147 source = "registry+https://github.com/rust-lang/crates.io-index"
148 checksum = "749f0da9cc72d82e600d8d2e44cadd0b9eedb9038f71a1c58556ac1c5791813b"
149 dependencies = [
150 "windows-targets",
151 ]
152
153 [[package]]
154 name = "windows-targets"
155 version = "0.52.5"
156 source = "registry+https://github.com/rust-lang/crates.io-index"
157 checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
158 dependencies = [
159 "windows_aarch64_gnullvm",
160 "windows_aarch64_msvc",
161 "windows_i686_gnu",
162 "windows_i686_gnullvm",
163 "windows_i686_msvc",
164 "windows_x86_64_gnu",
165 "windows_x86_64_gnullvm",
166 "windows_x86_64_msvc",
167 ]
168
169 [[package]]
170 name = "windows_aarch64_gnullvm"
171 version = "0.52.5"
172 source = "registry+https://github.com/rust-lang/crates.io-index"
173 checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
174
175 [[package]]
176 name = "windows_aarch64_msvc"
177 version = "0.52.5"
178 source = "registry+https://github.com/rust-lang/crates.io-index"
179 checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
180
181 [[package]]
182 name = "windows_i686_gnu"
183 version = "0.52.5"
184 source = "registry+https://github.com/rust-lang/crates.io-index"
185 checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
186
187 [[package]]
188 name = "windows_i686_gnullvm"
189 version = "0.52.5"
190 source = "registry+https://github.com/rust-lang/crates.io-index"
191 checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
192
193 [[package]]
194 name = "windows_i686_msvc"
195 version = "0.52.5"
196 source = "registry+https://github.com/rust-lang/crates.io-index"
197 checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
198
199 [[package]]
200 name = "windows_x86_64_gnu"
201 version = "0.52.5"
202 source = "registry+https://github.com/rust-lang/crates.io-index"
203 checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
204
205 [[package]]
206 name = "windows_x86_64_gnullvm"
207 version = "0.52.5"
208 source = "registry+https://github.com/rust-lang/crates.io-index"
209 checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
210
211 [[package]]
212 name = "windows_x86_64_msvc"
213 version = "0.52.5"
214 source = "registry+https://github.com/rust-lang/crates.io-index"
215 checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"