You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2006 lines
50 KiB

4 months ago
4 months ago
4 months ago
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "acme_common"
  6. version = "0.23.0"
  7. dependencies = [
  8. "base64",
  9. "daemonize",
  10. "env_logger",
  11. "glob",
  12. "log",
  13. "minijinja",
  14. "native-tls",
  15. "nix",
  16. "openssl",
  17. "openssl-sys",
  18. "punycode",
  19. "reqwest",
  20. "serde_json",
  21. "syslog",
  22. "toml",
  23. ]
  24. [[package]]
  25. name = "acmed"
  26. version = "0.23.0"
  27. dependencies = [
  28. "acme_common",
  29. "async-lock 3.3.0",
  30. "async-process",
  31. "bincode",
  32. "clap",
  33. "futures",
  34. "glob",
  35. "log",
  36. "minijinja",
  37. "nix",
  38. "nom",
  39. "rand",
  40. "reqwest",
  41. "serde",
  42. "serde_json",
  43. "tokio",
  44. "toml",
  45. ]
  46. [[package]]
  47. name = "addr2line"
  48. version = "0.21.0"
  49. source = "registry+https://github.com/rust-lang/crates.io-index"
  50. checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
  51. dependencies = [
  52. "gimli",
  53. ]
  54. [[package]]
  55. name = "adler"
  56. version = "1.0.2"
  57. source = "registry+https://github.com/rust-lang/crates.io-index"
  58. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  59. [[package]]
  60. name = "aho-corasick"
  61. version = "1.1.2"
  62. source = "registry+https://github.com/rust-lang/crates.io-index"
  63. checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
  64. dependencies = [
  65. "memchr",
  66. ]
  67. [[package]]
  68. name = "anstream"
  69. version = "0.6.11"
  70. source = "registry+https://github.com/rust-lang/crates.io-index"
  71. checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5"
  72. dependencies = [
  73. "anstyle",
  74. "anstyle-parse",
  75. "anstyle-query",
  76. "anstyle-wincon",
  77. "colorchoice",
  78. "utf8parse",
  79. ]
  80. [[package]]
  81. name = "anstyle"
  82. version = "1.0.6"
  83. source = "registry+https://github.com/rust-lang/crates.io-index"
  84. checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
  85. [[package]]
  86. name = "anstyle-parse"
  87. version = "0.2.3"
  88. source = "registry+https://github.com/rust-lang/crates.io-index"
  89. checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
  90. dependencies = [
  91. "utf8parse",
  92. ]
  93. [[package]]
  94. name = "anstyle-query"
  95. version = "1.0.2"
  96. source = "registry+https://github.com/rust-lang/crates.io-index"
  97. checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
  98. dependencies = [
  99. "windows-sys 0.52.0",
  100. ]
  101. [[package]]
  102. name = "anstyle-wincon"
  103. version = "3.0.2"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
  106. dependencies = [
  107. "anstyle",
  108. "windows-sys 0.52.0",
  109. ]
  110. [[package]]
  111. name = "anyhow"
  112. version = "1.0.79"
  113. source = "registry+https://github.com/rust-lang/crates.io-index"
  114. checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
  115. [[package]]
  116. name = "async-channel"
  117. version = "2.2.0"
  118. source = "registry+https://github.com/rust-lang/crates.io-index"
  119. checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3"
  120. dependencies = [
  121. "concurrent-queue",
  122. "event-listener 5.0.0",
  123. "event-listener-strategy 0.5.0",
  124. "futures-core",
  125. "pin-project-lite",
  126. ]
  127. [[package]]
  128. name = "async-io"
  129. version = "2.3.1"
  130. source = "registry+https://github.com/rust-lang/crates.io-index"
  131. checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65"
  132. dependencies = [
  133. "async-lock 3.3.0",
  134. "cfg-if",
  135. "concurrent-queue",
  136. "futures-io",
  137. "futures-lite",
  138. "parking",
  139. "polling",
  140. "rustix",
  141. "slab",
  142. "tracing",
  143. "windows-sys 0.52.0",
  144. ]
  145. [[package]]
  146. name = "async-lock"
  147. version = "2.8.0"
  148. source = "registry+https://github.com/rust-lang/crates.io-index"
  149. checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
  150. dependencies = [
  151. "event-listener 2.5.3",
  152. ]
  153. [[package]]
  154. name = "async-lock"
  155. version = "3.3.0"
  156. source = "registry+https://github.com/rust-lang/crates.io-index"
  157. checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b"
  158. dependencies = [
  159. "event-listener 4.0.3",
  160. "event-listener-strategy 0.4.0",
  161. "pin-project-lite",
  162. ]
  163. [[package]]
  164. name = "async-process"
  165. version = "2.0.1"
  166. source = "registry+https://github.com/rust-lang/crates.io-index"
  167. checksum = "15c1cd5d253ecac3d3cf15e390fd96bd92a13b1d14497d81abf077304794fb04"
  168. dependencies = [
  169. "async-channel",
  170. "async-io",
  171. "async-lock 3.3.0",
  172. "async-signal",
  173. "blocking",
  174. "cfg-if",
  175. "event-listener 4.0.3",
  176. "futures-lite",
  177. "rustix",
  178. "windows-sys 0.52.0",
  179. ]
  180. [[package]]
  181. name = "async-signal"
  182. version = "0.2.5"
  183. source = "registry+https://github.com/rust-lang/crates.io-index"
  184. checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
  185. dependencies = [
  186. "async-io",
  187. "async-lock 2.8.0",
  188. "atomic-waker",
  189. "cfg-if",
  190. "futures-core",
  191. "futures-io",
  192. "rustix",
  193. "signal-hook-registry",
  194. "slab",
  195. "windows-sys 0.48.0",
  196. ]
  197. [[package]]
  198. name = "async-task"
  199. version = "4.7.0"
  200. source = "registry+https://github.com/rust-lang/crates.io-index"
  201. checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799"
  202. [[package]]
  203. name = "atomic-waker"
  204. version = "1.1.2"
  205. source = "registry+https://github.com/rust-lang/crates.io-index"
  206. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  207. [[package]]
  208. name = "autocfg"
  209. version = "1.1.0"
  210. source = "registry+https://github.com/rust-lang/crates.io-index"
  211. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  212. [[package]]
  213. name = "backtrace"
  214. version = "0.3.69"
  215. source = "registry+https://github.com/rust-lang/crates.io-index"
  216. checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
  217. dependencies = [
  218. "addr2line",
  219. "cc",
  220. "cfg-if",
  221. "libc",
  222. "miniz_oxide",
  223. "object",
  224. "rustc-demangle",
  225. ]
  226. [[package]]
  227. name = "base64"
  228. version = "0.21.7"
  229. source = "registry+https://github.com/rust-lang/crates.io-index"
  230. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  231. [[package]]
  232. name = "bincode"
  233. version = "1.3.3"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  236. dependencies = [
  237. "serde",
  238. ]
  239. [[package]]
  240. name = "bitflags"
  241. version = "1.3.2"
  242. source = "registry+https://github.com/rust-lang/crates.io-index"
  243. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  244. [[package]]
  245. name = "bitflags"
  246. version = "2.4.2"
  247. source = "registry+https://github.com/rust-lang/crates.io-index"
  248. checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
  249. [[package]]
  250. name = "blocking"
  251. version = "1.5.1"
  252. source = "registry+https://github.com/rust-lang/crates.io-index"
  253. checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
  254. dependencies = [
  255. "async-channel",
  256. "async-lock 3.3.0",
  257. "async-task",
  258. "fastrand",
  259. "futures-io",
  260. "futures-lite",
  261. "piper",
  262. "tracing",
  263. ]
  264. [[package]]
  265. name = "bumpalo"
  266. version = "3.14.0"
  267. source = "registry+https://github.com/rust-lang/crates.io-index"
  268. checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
  269. [[package]]
  270. name = "bytes"
  271. version = "1.5.0"
  272. source = "registry+https://github.com/rust-lang/crates.io-index"
  273. checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
  274. [[package]]
  275. name = "cc"
  276. version = "1.0.83"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
  279. dependencies = [
  280. "libc",
  281. ]
  282. [[package]]
  283. name = "cfg-if"
  284. version = "1.0.0"
  285. source = "registry+https://github.com/rust-lang/crates.io-index"
  286. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  287. [[package]]
  288. name = "clap"
  289. version = "4.5.0"
  290. source = "registry+https://github.com/rust-lang/crates.io-index"
  291. checksum = "80c21025abd42669a92efc996ef13cfb2c5c627858421ea58d5c3b331a6c134f"
  292. dependencies = [
  293. "clap_builder",
  294. ]
  295. [[package]]
  296. name = "clap_builder"
  297. version = "4.5.0"
  298. source = "registry+https://github.com/rust-lang/crates.io-index"
  299. checksum = "458bf1f341769dfcf849846f65dffdf9146daa56bcd2a47cb4e1de9915567c99"
  300. dependencies = [
  301. "anstream",
  302. "anstyle",
  303. "clap_lex",
  304. "strsim",
  305. ]
  306. [[package]]
  307. name = "clap_lex"
  308. version = "0.7.0"
  309. source = "registry+https://github.com/rust-lang/crates.io-index"
  310. checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
  311. [[package]]
  312. name = "colorchoice"
  313. version = "1.0.0"
  314. source = "registry+https://github.com/rust-lang/crates.io-index"
  315. checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
  316. [[package]]
  317. name = "concurrent-queue"
  318. version = "2.4.0"
  319. source = "registry+https://github.com/rust-lang/crates.io-index"
  320. checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
  321. dependencies = [
  322. "crossbeam-utils",
  323. ]
  324. [[package]]
  325. name = "core-foundation"
  326. version = "0.9.4"
  327. source = "registry+https://github.com/rust-lang/crates.io-index"
  328. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  329. dependencies = [
  330. "core-foundation-sys",
  331. "libc",
  332. ]
  333. [[package]]
  334. name = "core-foundation-sys"
  335. version = "0.8.6"
  336. source = "registry+https://github.com/rust-lang/crates.io-index"
  337. checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
  338. [[package]]
  339. name = "crossbeam-utils"
  340. version = "0.8.19"
  341. source = "registry+https://github.com/rust-lang/crates.io-index"
  342. checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
  343. [[package]]
  344. name = "daemonize"
  345. version = "0.5.0"
  346. source = "registry+https://github.com/rust-lang/crates.io-index"
  347. checksum = "ab8bfdaacb3c887a54d41bdf48d3af8873b3f5566469f8ba21b92057509f116e"
  348. dependencies = [
  349. "libc",
  350. ]
  351. [[package]]
  352. name = "deranged"
  353. version = "0.3.11"
  354. source = "registry+https://github.com/rust-lang/crates.io-index"
  355. checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
  356. dependencies = [
  357. "powerfmt",
  358. ]
  359. [[package]]
  360. name = "encoding_rs"
  361. version = "0.8.33"
  362. source = "registry+https://github.com/rust-lang/crates.io-index"
  363. checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
  364. dependencies = [
  365. "cfg-if",
  366. ]
  367. [[package]]
  368. name = "env_filter"
  369. version = "0.1.0"
  370. source = "registry+https://github.com/rust-lang/crates.io-index"
  371. checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
  372. dependencies = [
  373. "log",
  374. "regex",
  375. ]
  376. [[package]]
  377. name = "env_logger"
  378. version = "0.11.1"
  379. source = "registry+https://github.com/rust-lang/crates.io-index"
  380. checksum = "05e7cf40684ae96ade6232ed84582f40ce0a66efcd43a5117aef610534f8e0b8"
  381. dependencies = [
  382. "anstream",
  383. "anstyle",
  384. "env_filter",
  385. "humantime",
  386. "log",
  387. ]
  388. [[package]]
  389. name = "equivalent"
  390. version = "1.0.1"
  391. source = "registry+https://github.com/rust-lang/crates.io-index"
  392. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  393. [[package]]
  394. name = "errno"
  395. version = "0.3.8"
  396. source = "registry+https://github.com/rust-lang/crates.io-index"
  397. checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
  398. dependencies = [
  399. "libc",
  400. "windows-sys 0.52.0",
  401. ]
  402. [[package]]
  403. name = "error-chain"
  404. version = "0.12.4"
  405. source = "registry+https://github.com/rust-lang/crates.io-index"
  406. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  407. dependencies = [
  408. "version_check",
  409. ]
  410. [[package]]
  411. name = "event-listener"
  412. version = "2.5.3"
  413. source = "registry+https://github.com/rust-lang/crates.io-index"
  414. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  415. [[package]]
  416. name = "event-listener"
  417. version = "4.0.3"
  418. source = "registry+https://github.com/rust-lang/crates.io-index"
  419. checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
  420. dependencies = [
  421. "concurrent-queue",
  422. "parking",
  423. "pin-project-lite",
  424. ]
  425. [[package]]
  426. name = "event-listener"
  427. version = "5.0.0"
  428. source = "registry+https://github.com/rust-lang/crates.io-index"
  429. checksum = "b72557800024fabbaa2449dd4bf24e37b93702d457a4d4f2b0dd1f0f039f20c1"
  430. dependencies = [
  431. "concurrent-queue",
  432. "parking",
  433. "pin-project-lite",
  434. ]
  435. [[package]]
  436. name = "event-listener-strategy"
  437. version = "0.4.0"
  438. source = "registry+https://github.com/rust-lang/crates.io-index"
  439. checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
  440. dependencies = [
  441. "event-listener 4.0.3",
  442. "pin-project-lite",
  443. ]
  444. [[package]]
  445. name = "event-listener-strategy"
  446. version = "0.5.0"
  447. source = "registry+https://github.com/rust-lang/crates.io-index"
  448. checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291"
  449. dependencies = [
  450. "event-listener 5.0.0",
  451. "pin-project-lite",
  452. ]
  453. [[package]]
  454. name = "fastrand"
  455. version = "2.0.1"
  456. source = "registry+https://github.com/rust-lang/crates.io-index"
  457. checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
  458. [[package]]
  459. name = "fnv"
  460. version = "1.0.7"
  461. source = "registry+https://github.com/rust-lang/crates.io-index"
  462. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  463. [[package]]
  464. name = "foreign-types"
  465. version = "0.3.2"
  466. source = "registry+https://github.com/rust-lang/crates.io-index"
  467. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  468. dependencies = [
  469. "foreign-types-shared",
  470. ]
  471. [[package]]
  472. name = "foreign-types-shared"
  473. version = "0.1.1"
  474. source = "registry+https://github.com/rust-lang/crates.io-index"
  475. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  476. [[package]]
  477. name = "form_urlencoded"
  478. version = "1.2.1"
  479. source = "registry+https://github.com/rust-lang/crates.io-index"
  480. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  481. dependencies = [
  482. "percent-encoding",
  483. ]
  484. [[package]]
  485. name = "futures"
  486. version = "0.3.30"
  487. source = "registry+https://github.com/rust-lang/crates.io-index"
  488. checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
  489. dependencies = [
  490. "futures-channel",
  491. "futures-core",
  492. "futures-executor",
  493. "futures-io",
  494. "futures-sink",
  495. "futures-task",
  496. "futures-util",
  497. ]
  498. [[package]]
  499. name = "futures-channel"
  500. version = "0.3.30"
  501. source = "registry+https://github.com/rust-lang/crates.io-index"
  502. checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
  503. dependencies = [
  504. "futures-core",
  505. "futures-sink",
  506. ]
  507. [[package]]
  508. name = "futures-core"
  509. version = "0.3.30"
  510. source = "registry+https://github.com/rust-lang/crates.io-index"
  511. checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
  512. [[package]]
  513. name = "futures-executor"
  514. version = "0.3.30"
  515. source = "registry+https://github.com/rust-lang/crates.io-index"
  516. checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
  517. dependencies = [
  518. "futures-core",
  519. "futures-task",
  520. "futures-util",
  521. ]
  522. [[package]]
  523. name = "futures-io"
  524. version = "0.3.30"
  525. source = "registry+https://github.com/rust-lang/crates.io-index"
  526. checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
  527. [[package]]
  528. name = "futures-lite"
  529. version = "2.2.0"
  530. source = "registry+https://github.com/rust-lang/crates.io-index"
  531. checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba"
  532. dependencies = [
  533. "fastrand",
  534. "futures-core",
  535. "futures-io",
  536. "parking",
  537. "pin-project-lite",
  538. ]
  539. [[package]]
  540. name = "futures-macro"
  541. version = "0.3.30"
  542. source = "registry+https://github.com/rust-lang/crates.io-index"
  543. checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
  544. dependencies = [
  545. "proc-macro2",
  546. "quote",
  547. "syn",
  548. ]
  549. [[package]]
  550. name = "futures-sink"
  551. version = "0.3.30"
  552. source = "registry+https://github.com/rust-lang/crates.io-index"
  553. checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
  554. [[package]]
  555. name = "futures-task"
  556. version = "0.3.30"
  557. source = "registry+https://github.com/rust-lang/crates.io-index"
  558. checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
  559. [[package]]
  560. name = "futures-util"
  561. version = "0.3.30"
  562. source = "registry+https://github.com/rust-lang/crates.io-index"
  563. checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
  564. dependencies = [
  565. "futures-channel",
  566. "futures-core",
  567. "futures-io",
  568. "futures-macro",
  569. "futures-sink",
  570. "futures-task",
  571. "memchr",
  572. "pin-project-lite",
  573. "pin-utils",
  574. "slab",
  575. ]
  576. [[package]]
  577. name = "getrandom"
  578. version = "0.2.12"
  579. source = "registry+https://github.com/rust-lang/crates.io-index"
  580. checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
  581. dependencies = [
  582. "cfg-if",
  583. "libc",
  584. "wasi",
  585. ]
  586. [[package]]
  587. name = "gimli"
  588. version = "0.28.1"
  589. source = "registry+https://github.com/rust-lang/crates.io-index"
  590. checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
  591. [[package]]
  592. name = "glob"
  593. version = "0.3.1"
  594. source = "registry+https://github.com/rust-lang/crates.io-index"
  595. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  596. [[package]]
  597. name = "h2"
  598. version = "0.3.24"
  599. source = "registry+https://github.com/rust-lang/crates.io-index"
  600. checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9"
  601. dependencies = [
  602. "bytes",
  603. "fnv",
  604. "futures-core",
  605. "futures-sink",
  606. "futures-util",
  607. "http",
  608. "indexmap",
  609. "slab",
  610. "tokio",
  611. "tokio-util",
  612. "tracing",
  613. ]
  614. [[package]]
  615. name = "hashbrown"
  616. version = "0.14.3"
  617. source = "registry+https://github.com/rust-lang/crates.io-index"
  618. checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
  619. [[package]]
  620. name = "hermit-abi"
  621. version = "0.3.5"
  622. source = "registry+https://github.com/rust-lang/crates.io-index"
  623. checksum = "d0c62115964e08cb8039170eb33c1d0e2388a256930279edca206fff675f82c3"
  624. [[package]]
  625. name = "hostname"
  626. version = "0.3.1"
  627. source = "registry+https://github.com/rust-lang/crates.io-index"
  628. checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
  629. dependencies = [
  630. "libc",
  631. "match_cfg",
  632. "winapi",
  633. ]
  634. [[package]]
  635. name = "http"
  636. version = "0.2.11"
  637. source = "registry+https://github.com/rust-lang/crates.io-index"
  638. checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
  639. dependencies = [
  640. "bytes",
  641. "fnv",
  642. "itoa",
  643. ]
  644. [[package]]
  645. name = "http-body"
  646. version = "0.4.6"
  647. source = "registry+https://github.com/rust-lang/crates.io-index"
  648. checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
  649. dependencies = [
  650. "bytes",
  651. "http",
  652. "pin-project-lite",
  653. ]
  654. [[package]]
  655. name = "httparse"
  656. version = "1.8.0"
  657. source = "registry+https://github.com/rust-lang/crates.io-index"
  658. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  659. [[package]]
  660. name = "httpdate"
  661. version = "1.0.3"
  662. source = "registry+https://github.com/rust-lang/crates.io-index"
  663. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  664. [[package]]
  665. name = "humantime"
  666. version = "2.1.0"
  667. source = "registry+https://github.com/rust-lang/crates.io-index"
  668. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  669. [[package]]
  670. name = "hyper"
  671. version = "0.14.28"
  672. source = "registry+https://github.com/rust-lang/crates.io-index"
  673. checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
  674. dependencies = [
  675. "bytes",
  676. "futures-channel",
  677. "futures-core",
  678. "futures-util",
  679. "h2",
  680. "http",
  681. "http-body",
  682. "httparse",
  683. "httpdate",
  684. "itoa",
  685. "pin-project-lite",
  686. "socket2",
  687. "tokio",
  688. "tower-service",
  689. "tracing",
  690. "want",
  691. ]
  692. [[package]]
  693. name = "hyper-tls"
  694. version = "0.5.0"
  695. source = "registry+https://github.com/rust-lang/crates.io-index"
  696. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  697. dependencies = [
  698. "bytes",
  699. "hyper",
  700. "native-tls",
  701. "tokio",
  702. "tokio-native-tls",
  703. ]
  704. [[package]]
  705. name = "idna"
  706. version = "0.5.0"
  707. source = "registry+https://github.com/rust-lang/crates.io-index"
  708. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  709. dependencies = [
  710. "unicode-bidi",
  711. "unicode-normalization",
  712. ]
  713. [[package]]
  714. name = "indexmap"
  715. version = "2.2.2"
  716. source = "registry+https://github.com/rust-lang/crates.io-index"
  717. checksum = "824b2ae422412366ba479e8111fd301f7b5faece8149317bb81925979a53f520"
  718. dependencies = [
  719. "equivalent",
  720. "hashbrown",
  721. ]
  722. [[package]]
  723. name = "ipnet"
  724. version = "2.9.0"
  725. source = "registry+https://github.com/rust-lang/crates.io-index"
  726. checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
  727. [[package]]
  728. name = "itoa"
  729. version = "1.0.10"
  730. source = "registry+https://github.com/rust-lang/crates.io-index"
  731. checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
  732. [[package]]
  733. name = "js-sys"
  734. version = "0.3.68"
  735. source = "registry+https://github.com/rust-lang/crates.io-index"
  736. checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee"
  737. dependencies = [
  738. "wasm-bindgen",
  739. ]
  740. [[package]]
  741. name = "lazy_static"
  742. version = "1.4.0"
  743. source = "registry+https://github.com/rust-lang/crates.io-index"
  744. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  745. [[package]]
  746. name = "libc"
  747. version = "0.2.153"
  748. source = "registry+https://github.com/rust-lang/crates.io-index"
  749. checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
  750. [[package]]
  751. name = "linux-raw-sys"
  752. version = "0.4.13"
  753. source = "registry+https://github.com/rust-lang/crates.io-index"
  754. checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
  755. [[package]]
  756. name = "lock_api"
  757. version = "0.4.11"
  758. source = "registry+https://github.com/rust-lang/crates.io-index"
  759. checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
  760. dependencies = [
  761. "autocfg",
  762. "scopeguard",
  763. ]
  764. [[package]]
  765. name = "log"
  766. version = "0.4.20"
  767. source = "registry+https://github.com/rust-lang/crates.io-index"
  768. checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
  769. [[package]]
  770. name = "match_cfg"
  771. version = "0.1.0"
  772. source = "registry+https://github.com/rust-lang/crates.io-index"
  773. checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
  774. [[package]]
  775. name = "memchr"
  776. version = "2.7.1"
  777. source = "registry+https://github.com/rust-lang/crates.io-index"
  778. checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
  779. [[package]]
  780. name = "mime"
  781. version = "0.3.17"
  782. source = "registry+https://github.com/rust-lang/crates.io-index"
  783. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  784. [[package]]
  785. name = "minijinja"
  786. version = "1.0.12"
  787. source = "registry+https://github.com/rust-lang/crates.io-index"
  788. checksum = "6fe0ff215195a22884d867b547c70a0c4815cbbcc70991f281dca604b20d10ce"
  789. dependencies = [
  790. "serde",
  791. ]
  792. [[package]]
  793. name = "minimal-lexical"
  794. version = "0.2.1"
  795. source = "registry+https://github.com/rust-lang/crates.io-index"
  796. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  797. [[package]]
  798. name = "miniz_oxide"
  799. version = "0.7.2"
  800. source = "registry+https://github.com/rust-lang/crates.io-index"
  801. checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
  802. dependencies = [
  803. "adler",
  804. ]
  805. [[package]]
  806. name = "mio"
  807. version = "0.8.10"
  808. source = "registry+https://github.com/rust-lang/crates.io-index"
  809. checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
  810. dependencies = [
  811. "libc",
  812. "wasi",
  813. "windows-sys 0.48.0",
  814. ]
  815. [[package]]
  816. name = "native-tls"
  817. version = "0.2.11"
  818. source = "registry+https://github.com/rust-lang/crates.io-index"
  819. checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
  820. dependencies = [
  821. "lazy_static",
  822. "libc",
  823. "log",
  824. "openssl",
  825. "openssl-probe",
  826. "openssl-sys",
  827. "schannel",
  828. "security-framework",
  829. "security-framework-sys",
  830. "tempfile",
  831. ]
  832. [[package]]
  833. name = "nix"
  834. version = "0.27.1"
  835. source = "registry+https://github.com/rust-lang/crates.io-index"
  836. checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
  837. dependencies = [
  838. "bitflags 2.4.2",
  839. "cfg-if",
  840. "libc",
  841. ]
  842. [[package]]
  843. name = "nom"
  844. version = "7.1.3"
  845. source = "registry+https://github.com/rust-lang/crates.io-index"
  846. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  847. dependencies = [
  848. "memchr",
  849. "minimal-lexical",
  850. ]
  851. [[package]]
  852. name = "num-conv"
  853. version = "0.1.0"
  854. source = "registry+https://github.com/rust-lang/crates.io-index"
  855. checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
  856. [[package]]
  857. name = "num_cpus"
  858. version = "1.16.0"
  859. source = "registry+https://github.com/rust-lang/crates.io-index"
  860. checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
  861. dependencies = [
  862. "hermit-abi",
  863. "libc",
  864. ]
  865. [[package]]
  866. name = "num_threads"
  867. version = "0.1.6"
  868. source = "registry+https://github.com/rust-lang/crates.io-index"
  869. checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
  870. dependencies = [
  871. "libc",
  872. ]
  873. [[package]]
  874. name = "object"
  875. version = "0.32.2"
  876. source = "registry+https://github.com/rust-lang/crates.io-index"
  877. checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
  878. dependencies = [
  879. "memchr",
  880. ]
  881. [[package]]
  882. name = "once_cell"
  883. version = "1.19.0"
  884. source = "registry+https://github.com/rust-lang/crates.io-index"
  885. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  886. [[package]]
  887. name = "openssl"
  888. version = "0.10.63"
  889. source = "registry+https://github.com/rust-lang/crates.io-index"
  890. checksum = "15c9d69dd87a29568d4d017cfe8ec518706046a05184e5aea92d0af890b803c8"
  891. dependencies = [
  892. "bitflags 2.4.2",
  893. "cfg-if",
  894. "foreign-types",
  895. "libc",
  896. "once_cell",
  897. "openssl-macros",
  898. "openssl-sys",
  899. ]
  900. [[package]]
  901. name = "openssl-macros"
  902. version = "0.1.1"
  903. source = "registry+https://github.com/rust-lang/crates.io-index"
  904. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  905. dependencies = [
  906. "proc-macro2",
  907. "quote",
  908. "syn",
  909. ]
  910. [[package]]
  911. name = "openssl-probe"
  912. version = "0.1.5"
  913. source = "registry+https://github.com/rust-lang/crates.io-index"
  914. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  915. [[package]]
  916. name = "openssl-src"
  917. version = "300.2.2+3.2.1"
  918. source = "registry+https://github.com/rust-lang/crates.io-index"
  919. checksum = "8bbfad0063610ac26ee79f7484739e2b07555a75c42453b89263830b5c8103bc"
  920. dependencies = [
  921. "cc",
  922. ]
  923. [[package]]
  924. name = "openssl-sys"
  925. version = "0.9.99"
  926. source = "registry+https://github.com/rust-lang/crates.io-index"
  927. checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae"
  928. dependencies = [
  929. "cc",
  930. "libc",
  931. "openssl-src",
  932. "pkg-config",
  933. "vcpkg",
  934. ]
  935. [[package]]
  936. name = "parking"
  937. version = "2.2.0"
  938. source = "registry+https://github.com/rust-lang/crates.io-index"
  939. checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
  940. [[package]]
  941. name = "parking_lot"
  942. version = "0.12.1"
  943. source = "registry+https://github.com/rust-lang/crates.io-index"
  944. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  945. dependencies = [
  946. "lock_api",
  947. "parking_lot_core",
  948. ]
  949. [[package]]
  950. name = "parking_lot_core"
  951. version = "0.9.9"
  952. source = "registry+https://github.com/rust-lang/crates.io-index"
  953. checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
  954. dependencies = [
  955. "cfg-if",
  956. "libc",
  957. "redox_syscall",
  958. "smallvec",
  959. "windows-targets 0.48.5",
  960. ]
  961. [[package]]
  962. name = "percent-encoding"
  963. version = "2.3.1"
  964. source = "registry+https://github.com/rust-lang/crates.io-index"
  965. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  966. [[package]]
  967. name = "pin-project-lite"
  968. version = "0.2.13"
  969. source = "registry+https://github.com/rust-lang/crates.io-index"
  970. checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
  971. [[package]]
  972. name = "pin-utils"
  973. version = "0.1.0"
  974. source = "registry+https://github.com/rust-lang/crates.io-index"
  975. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  976. [[package]]
  977. name = "piper"
  978. version = "0.2.1"
  979. source = "registry+https://github.com/rust-lang/crates.io-index"
  980. checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
  981. dependencies = [
  982. "atomic-waker",
  983. "fastrand",
  984. "futures-io",
  985. ]
  986. [[package]]
  987. name = "pkg-config"
  988. version = "0.3.29"
  989. source = "registry+https://github.com/rust-lang/crates.io-index"
  990. checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb"
  991. [[package]]
  992. name = "polling"
  993. version = "3.4.0"
  994. source = "registry+https://github.com/rust-lang/crates.io-index"
  995. checksum = "30054e72317ab98eddd8561db0f6524df3367636884b7b21b703e4b280a84a14"
  996. dependencies = [
  997. "cfg-if",
  998. "concurrent-queue",
  999. "pin-project-lite",
  1000. "rustix",
  1001. "tracing",
  1002. "windows-sys 0.52.0",
  1003. ]
  1004. [[package]]
  1005. name = "powerfmt"
  1006. version = "0.2.0"
  1007. source = "registry+https://github.com/rust-lang/crates.io-index"
  1008. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  1009. [[package]]
  1010. name = "ppv-lite86"
  1011. version = "0.2.17"
  1012. source = "registry+https://github.com/rust-lang/crates.io-index"
  1013. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  1014. [[package]]
  1015. name = "proc-macro2"
  1016. version = "1.0.78"
  1017. source = "registry+https://github.com/rust-lang/crates.io-index"
  1018. checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
  1019. dependencies = [
  1020. "unicode-ident",
  1021. ]
  1022. [[package]]
  1023. name = "punycode"
  1024. version = "0.4.1"
  1025. source = "registry+https://github.com/rust-lang/crates.io-index"
  1026. checksum = "e9e1dcb320d6839f6edb64f7a4a59d39b30480d4d1765b56873f7c858538a5fe"
  1027. [[package]]
  1028. name = "quote"
  1029. version = "1.0.35"
  1030. source = "registry+https://github.com/rust-lang/crates.io-index"
  1031. checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
  1032. dependencies = [
  1033. "proc-macro2",
  1034. ]
  1035. [[package]]
  1036. name = "rand"
  1037. version = "0.8.5"
  1038. source = "registry+https://github.com/rust-lang/crates.io-index"
  1039. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  1040. dependencies = [
  1041. "libc",
  1042. "rand_chacha",
  1043. "rand_core",
  1044. ]
  1045. [[package]]
  1046. name = "rand_chacha"
  1047. version = "0.3.1"
  1048. source = "registry+https://github.com/rust-lang/crates.io-index"
  1049. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  1050. dependencies = [
  1051. "ppv-lite86",
  1052. "rand_core",
  1053. ]
  1054. [[package]]
  1055. name = "rand_core"
  1056. version = "0.6.4"
  1057. source = "registry+https://github.com/rust-lang/crates.io-index"
  1058. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  1059. dependencies = [
  1060. "getrandom",
  1061. ]
  1062. [[package]]
  1063. name = "redox_syscall"
  1064. version = "0.4.1"
  1065. source = "registry+https://github.com/rust-lang/crates.io-index"
  1066. checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
  1067. dependencies = [
  1068. "bitflags 1.3.2",
  1069. ]
  1070. [[package]]
  1071. name = "regex"
  1072. version = "1.10.3"
  1073. source = "registry+https://github.com/rust-lang/crates.io-index"
  1074. checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
  1075. dependencies = [
  1076. "aho-corasick",
  1077. "memchr",
  1078. "regex-automata",
  1079. "regex-syntax",
  1080. ]
  1081. [[package]]
  1082. name = "regex-automata"
  1083. version = "0.4.5"
  1084. source = "registry+https://github.com/rust-lang/crates.io-index"
  1085. checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd"
  1086. dependencies = [
  1087. "aho-corasick",
  1088. "memchr",
  1089. "regex-syntax",
  1090. ]
  1091. [[package]]
  1092. name = "regex-syntax"
  1093. version = "0.8.2"
  1094. source = "registry+https://github.com/rust-lang/crates.io-index"
  1095. checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
  1096. [[package]]
  1097. name = "reqwest"
  1098. version = "0.11.24"
  1099. source = "registry+https://github.com/rust-lang/crates.io-index"
  1100. checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251"
  1101. dependencies = [
  1102. "base64",
  1103. "bytes",
  1104. "encoding_rs",
  1105. "futures-core",
  1106. "futures-util",
  1107. "h2",
  1108. "http",
  1109. "http-body",
  1110. "hyper",
  1111. "hyper-tls",
  1112. "ipnet",
  1113. "js-sys",
  1114. "log",
  1115. "mime",
  1116. "native-tls",
  1117. "once_cell",
  1118. "percent-encoding",
  1119. "pin-project-lite",
  1120. "rustls-pemfile",
  1121. "serde",
  1122. "serde_json",
  1123. "serde_urlencoded",
  1124. "sync_wrapper",
  1125. "system-configuration",
  1126. "tokio",
  1127. "tokio-native-tls",
  1128. "tower-service",
  1129. "url",
  1130. "wasm-bindgen",
  1131. "wasm-bindgen-futures",
  1132. "web-sys",
  1133. "winreg",
  1134. ]
  1135. [[package]]
  1136. name = "rustc-demangle"
  1137. version = "0.1.23"
  1138. source = "registry+https://github.com/rust-lang/crates.io-index"
  1139. checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
  1140. [[package]]
  1141. name = "rustix"
  1142. version = "0.38.31"
  1143. source = "registry+https://github.com/rust-lang/crates.io-index"
  1144. checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949"
  1145. dependencies = [
  1146. "bitflags 2.4.2",
  1147. "errno",
  1148. "libc",
  1149. "linux-raw-sys",
  1150. "windows-sys 0.52.0",
  1151. ]
  1152. [[package]]
  1153. name = "rustls-pemfile"
  1154. version = "1.0.4"
  1155. source = "registry+https://github.com/rust-lang/crates.io-index"
  1156. checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
  1157. dependencies = [
  1158. "base64",
  1159. ]
  1160. [[package]]
  1161. name = "ryu"
  1162. version = "1.0.16"
  1163. source = "registry+https://github.com/rust-lang/crates.io-index"
  1164. checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
  1165. [[package]]
  1166. name = "schannel"
  1167. version = "0.1.23"
  1168. source = "registry+https://github.com/rust-lang/crates.io-index"
  1169. checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
  1170. dependencies = [
  1171. "windows-sys 0.52.0",
  1172. ]
  1173. [[package]]
  1174. name = "scopeguard"
  1175. version = "1.2.0"
  1176. source = "registry+https://github.com/rust-lang/crates.io-index"
  1177. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  1178. [[package]]
  1179. name = "security-framework"
  1180. version = "2.9.2"
  1181. source = "registry+https://github.com/rust-lang/crates.io-index"
  1182. checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
  1183. dependencies = [
  1184. "bitflags 1.3.2",
  1185. "core-foundation",
  1186. "core-foundation-sys",
  1187. "libc",
  1188. "security-framework-sys",
  1189. ]
  1190. [[package]]
  1191. name = "security-framework-sys"
  1192. version = "2.9.1"
  1193. source = "registry+https://github.com/rust-lang/crates.io-index"
  1194. checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
  1195. dependencies = [
  1196. "core-foundation-sys",
  1197. "libc",
  1198. ]
  1199. [[package]]
  1200. name = "serde"
  1201. version = "1.0.196"
  1202. source = "registry+https://github.com/rust-lang/crates.io-index"
  1203. checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32"
  1204. dependencies = [
  1205. "serde_derive",
  1206. ]
  1207. [[package]]
  1208. name = "serde_derive"
  1209. version = "1.0.196"
  1210. source = "registry+https://github.com/rust-lang/crates.io-index"
  1211. checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67"
  1212. dependencies = [
  1213. "proc-macro2",
  1214. "quote",
  1215. "syn",
  1216. ]
  1217. [[package]]
  1218. name = "serde_json"
  1219. version = "1.0.113"
  1220. source = "registry+https://github.com/rust-lang/crates.io-index"
  1221. checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79"
  1222. dependencies = [
  1223. "itoa",
  1224. "ryu",
  1225. "serde",
  1226. ]
  1227. [[package]]
  1228. name = "serde_spanned"
  1229. version = "0.6.5"
  1230. source = "registry+https://github.com/rust-lang/crates.io-index"
  1231. checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
  1232. dependencies = [
  1233. "serde",
  1234. ]
  1235. [[package]]
  1236. name = "serde_urlencoded"
  1237. version = "0.7.1"
  1238. source = "registry+https://github.com/rust-lang/crates.io-index"
  1239. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  1240. dependencies = [
  1241. "form_urlencoded",
  1242. "itoa",
  1243. "ryu",
  1244. "serde",
  1245. ]
  1246. [[package]]
  1247. name = "signal-hook-registry"
  1248. version = "1.4.1"
  1249. source = "registry+https://github.com/rust-lang/crates.io-index"
  1250. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  1251. dependencies = [
  1252. "libc",
  1253. ]
  1254. [[package]]
  1255. name = "slab"
  1256. version = "0.4.9"
  1257. source = "registry+https://github.com/rust-lang/crates.io-index"
  1258. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  1259. dependencies = [
  1260. "autocfg",
  1261. ]
  1262. [[package]]
  1263. name = "smallvec"
  1264. version = "1.13.1"
  1265. source = "registry+https://github.com/rust-lang/crates.io-index"
  1266. checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
  1267. [[package]]
  1268. name = "socket2"
  1269. version = "0.5.5"
  1270. source = "registry+https://github.com/rust-lang/crates.io-index"
  1271. checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
  1272. dependencies = [
  1273. "libc",
  1274. "windows-sys 0.48.0",
  1275. ]
  1276. [[package]]
  1277. name = "strsim"
  1278. version = "0.11.0"
  1279. source = "registry+https://github.com/rust-lang/crates.io-index"
  1280. checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01"
  1281. [[package]]
  1282. name = "syn"
  1283. version = "2.0.48"
  1284. source = "registry+https://github.com/rust-lang/crates.io-index"
  1285. checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
  1286. dependencies = [
  1287. "proc-macro2",
  1288. "quote",
  1289. "unicode-ident",
  1290. ]
  1291. [[package]]
  1292. name = "sync_wrapper"
  1293. version = "0.1.2"
  1294. source = "registry+https://github.com/rust-lang/crates.io-index"
  1295. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  1296. [[package]]
  1297. name = "syslog"
  1298. version = "6.1.0"
  1299. source = "registry+https://github.com/rust-lang/crates.io-index"
  1300. checksum = "7434e95bcccce1215d30f4bf84fe8c00e8de1b9be4fb736d747ca53d36e7f96f"
  1301. dependencies = [
  1302. "error-chain",
  1303. "hostname",
  1304. "libc",
  1305. "log",
  1306. "time",
  1307. ]
  1308. [[package]]
  1309. name = "system-configuration"
  1310. version = "0.5.1"
  1311. source = "registry+https://github.com/rust-lang/crates.io-index"
  1312. checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
  1313. dependencies = [
  1314. "bitflags 1.3.2",
  1315. "core-foundation",
  1316. "system-configuration-sys",
  1317. ]
  1318. [[package]]
  1319. name = "system-configuration-sys"
  1320. version = "0.5.0"
  1321. source = "registry+https://github.com/rust-lang/crates.io-index"
  1322. checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
  1323. dependencies = [
  1324. "core-foundation-sys",
  1325. "libc",
  1326. ]
  1327. [[package]]
  1328. name = "tacd"
  1329. version = "0.23.0"
  1330. dependencies = [
  1331. "acme_common",
  1332. "anyhow",
  1333. "clap",
  1334. "log",
  1335. "openssl",
  1336. "thiserror",
  1337. ]
  1338. [[package]]
  1339. name = "tempfile"
  1340. version = "3.10.0"
  1341. source = "registry+https://github.com/rust-lang/crates.io-index"
  1342. checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67"
  1343. dependencies = [
  1344. "cfg-if",
  1345. "fastrand",
  1346. "rustix",
  1347. "windows-sys 0.52.0",
  1348. ]
  1349. [[package]]
  1350. name = "thiserror"
  1351. version = "1.0.56"
  1352. source = "registry+https://github.com/rust-lang/crates.io-index"
  1353. checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
  1354. dependencies = [
  1355. "thiserror-impl",
  1356. ]
  1357. [[package]]
  1358. name = "thiserror-impl"
  1359. version = "1.0.56"
  1360. source = "registry+https://github.com/rust-lang/crates.io-index"
  1361. checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
  1362. dependencies = [
  1363. "proc-macro2",
  1364. "quote",
  1365. "syn",
  1366. ]
  1367. [[package]]
  1368. name = "time"
  1369. version = "0.3.34"
  1370. source = "registry+https://github.com/rust-lang/crates.io-index"
  1371. checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
  1372. dependencies = [
  1373. "deranged",
  1374. "itoa",
  1375. "libc",
  1376. "num-conv",
  1377. "num_threads",
  1378. "powerfmt",
  1379. "serde",
  1380. "time-core",
  1381. "time-macros",
  1382. ]
  1383. [[package]]
  1384. name = "time-core"
  1385. version = "0.1.2"
  1386. source = "registry+https://github.com/rust-lang/crates.io-index"
  1387. checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
  1388. [[package]]
  1389. name = "time-macros"
  1390. version = "0.2.17"
  1391. source = "registry+https://github.com/rust-lang/crates.io-index"
  1392. checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
  1393. dependencies = [
  1394. "num-conv",
  1395. "time-core",
  1396. ]
  1397. [[package]]
  1398. name = "tinyvec"
  1399. version = "1.6.0"
  1400. source = "registry+https://github.com/rust-lang/crates.io-index"
  1401. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  1402. dependencies = [
  1403. "tinyvec_macros",
  1404. ]
  1405. [[package]]
  1406. name = "tinyvec_macros"
  1407. version = "0.1.1"
  1408. source = "registry+https://github.com/rust-lang/crates.io-index"
  1409. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  1410. [[package]]
  1411. name = "tokio"
  1412. version = "1.36.0"
  1413. source = "registry+https://github.com/rust-lang/crates.io-index"
  1414. checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931"
  1415. dependencies = [
  1416. "backtrace",
  1417. "bytes",
  1418. "libc",
  1419. "mio",
  1420. "num_cpus",
  1421. "parking_lot",
  1422. "pin-project-lite",
  1423. "signal-hook-registry",
  1424. "socket2",
  1425. "tokio-macros",
  1426. "windows-sys 0.48.0",
  1427. ]
  1428. [[package]]
  1429. name = "tokio-macros"
  1430. version = "2.2.0"
  1431. source = "registry+https://github.com/rust-lang/crates.io-index"
  1432. checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
  1433. dependencies = [
  1434. "proc-macro2",
  1435. "quote",
  1436. "syn",
  1437. ]
  1438. [[package]]
  1439. name = "tokio-native-tls"
  1440. version = "0.3.1"
  1441. source = "registry+https://github.com/rust-lang/crates.io-index"
  1442. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  1443. dependencies = [
  1444. "native-tls",
  1445. "tokio",
  1446. ]
  1447. [[package]]
  1448. name = "tokio-util"
  1449. version = "0.7.10"
  1450. source = "registry+https://github.com/rust-lang/crates.io-index"
  1451. checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
  1452. dependencies = [
  1453. "bytes",
  1454. "futures-core",
  1455. "futures-sink",
  1456. "pin-project-lite",
  1457. "tokio",
  1458. "tracing",
  1459. ]
  1460. [[package]]
  1461. name = "toml"
  1462. version = "0.8.10"
  1463. source = "registry+https://github.com/rust-lang/crates.io-index"
  1464. checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290"
  1465. dependencies = [
  1466. "serde",
  1467. "serde_spanned",
  1468. "toml_datetime",
  1469. "toml_edit",
  1470. ]
  1471. [[package]]
  1472. name = "toml_datetime"
  1473. version = "0.6.5"
  1474. source = "registry+https://github.com/rust-lang/crates.io-index"
  1475. checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
  1476. dependencies = [
  1477. "serde",
  1478. ]
  1479. [[package]]
  1480. name = "toml_edit"
  1481. version = "0.22.4"
  1482. source = "registry+https://github.com/rust-lang/crates.io-index"
  1483. checksum = "0c9ffdf896f8daaabf9b66ba8e77ea1ed5ed0f72821b398aba62352e95062951"
  1484. dependencies = [
  1485. "indexmap",
  1486. "serde",
  1487. "serde_spanned",
  1488. "toml_datetime",
  1489. "winnow",
  1490. ]
  1491. [[package]]
  1492. name = "tower-service"
  1493. version = "0.3.2"
  1494. source = "registry+https://github.com/rust-lang/crates.io-index"
  1495. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  1496. [[package]]
  1497. name = "tracing"
  1498. version = "0.1.40"
  1499. source = "registry+https://github.com/rust-lang/crates.io-index"
  1500. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  1501. dependencies = [
  1502. "pin-project-lite",
  1503. "tracing-core",
  1504. ]
  1505. [[package]]
  1506. name = "tracing-core"
  1507. version = "0.1.32"
  1508. source = "registry+https://github.com/rust-lang/crates.io-index"
  1509. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  1510. dependencies = [
  1511. "once_cell",
  1512. ]
  1513. [[package]]
  1514. name = "try-lock"
  1515. version = "0.2.5"
  1516. source = "registry+https://github.com/rust-lang/crates.io-index"
  1517. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  1518. [[package]]
  1519. name = "unicode-bidi"
  1520. version = "0.3.15"
  1521. source = "registry+https://github.com/rust-lang/crates.io-index"
  1522. checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
  1523. [[package]]
  1524. name = "unicode-ident"
  1525. version = "1.0.12"
  1526. source = "registry+https://github.com/rust-lang/crates.io-index"
  1527. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  1528. [[package]]
  1529. name = "unicode-normalization"
  1530. version = "0.1.22"
  1531. source = "registry+https://github.com/rust-lang/crates.io-index"
  1532. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  1533. dependencies = [
  1534. "tinyvec",
  1535. ]
  1536. [[package]]
  1537. name = "url"
  1538. version = "2.5.0"
  1539. source = "registry+https://github.com/rust-lang/crates.io-index"
  1540. checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
  1541. dependencies = [
  1542. "form_urlencoded",
  1543. "idna",
  1544. "percent-encoding",
  1545. ]
  1546. [[package]]
  1547. name = "utf8parse"
  1548. version = "0.2.1"
  1549. source = "registry+https://github.com/rust-lang/crates.io-index"
  1550. checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
  1551. [[package]]
  1552. name = "vcpkg"
  1553. version = "0.2.15"
  1554. source = "registry+https://github.com/rust-lang/crates.io-index"
  1555. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  1556. [[package]]
  1557. name = "version_check"
  1558. version = "0.9.4"
  1559. source = "registry+https://github.com/rust-lang/crates.io-index"
  1560. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  1561. [[package]]
  1562. name = "want"
  1563. version = "0.3.1"
  1564. source = "registry+https://github.com/rust-lang/crates.io-index"
  1565. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  1566. dependencies = [
  1567. "try-lock",
  1568. ]
  1569. [[package]]
  1570. name = "wasi"
  1571. version = "0.11.0+wasi-snapshot-preview1"
  1572. source = "registry+https://github.com/rust-lang/crates.io-index"
  1573. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  1574. [[package]]
  1575. name = "wasm-bindgen"
  1576. version = "0.2.91"
  1577. source = "registry+https://github.com/rust-lang/crates.io-index"
  1578. checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f"
  1579. dependencies = [
  1580. "cfg-if",
  1581. "wasm-bindgen-macro",
  1582. ]
  1583. [[package]]
  1584. name = "wasm-bindgen-backend"
  1585. version = "0.2.91"
  1586. source = "registry+https://github.com/rust-lang/crates.io-index"
  1587. checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b"
  1588. dependencies = [
  1589. "bumpalo",
  1590. "log",
  1591. "once_cell",
  1592. "proc-macro2",
  1593. "quote",
  1594. "syn",
  1595. "wasm-bindgen-shared",
  1596. ]
  1597. [[package]]
  1598. name = "wasm-bindgen-futures"
  1599. version = "0.4.41"
  1600. source = "registry+https://github.com/rust-lang/crates.io-index"
  1601. checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97"
  1602. dependencies = [
  1603. "cfg-if",
  1604. "js-sys",
  1605. "wasm-bindgen",
  1606. "web-sys",
  1607. ]
  1608. [[package]]
  1609. name = "wasm-bindgen-macro"
  1610. version = "0.2.91"
  1611. source = "registry+https://github.com/rust-lang/crates.io-index"
  1612. checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed"
  1613. dependencies = [
  1614. "quote",
  1615. "wasm-bindgen-macro-support",
  1616. ]
  1617. [[package]]
  1618. name = "wasm-bindgen-macro-support"
  1619. version = "0.2.91"
  1620. source = "registry+https://github.com/rust-lang/crates.io-index"
  1621. checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66"
  1622. dependencies = [
  1623. "proc-macro2",
  1624. "quote",
  1625. "syn",
  1626. "wasm-bindgen-backend",
  1627. "wasm-bindgen-shared",
  1628. ]
  1629. [[package]]
  1630. name = "wasm-bindgen-shared"
  1631. version = "0.2.91"
  1632. source = "registry+https://github.com/rust-lang/crates.io-index"
  1633. checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838"
  1634. [[package]]
  1635. name = "web-sys"
  1636. version = "0.3.68"
  1637. source = "registry+https://github.com/rust-lang/crates.io-index"
  1638. checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446"
  1639. dependencies = [
  1640. "js-sys",
  1641. "wasm-bindgen",
  1642. ]
  1643. [[package]]
  1644. name = "winapi"
  1645. version = "0.3.9"
  1646. source = "registry+https://github.com/rust-lang/crates.io-index"
  1647. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  1648. dependencies = [
  1649. "winapi-i686-pc-windows-gnu",
  1650. "winapi-x86_64-pc-windows-gnu",
  1651. ]
  1652. [[package]]
  1653. name = "winapi-i686-pc-windows-gnu"
  1654. version = "0.4.0"
  1655. source = "registry+https://github.com/rust-lang/crates.io-index"
  1656. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1657. [[package]]
  1658. name = "winapi-x86_64-pc-windows-gnu"
  1659. version = "0.4.0"
  1660. source = "registry+https://github.com/rust-lang/crates.io-index"
  1661. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1662. [[package]]
  1663. name = "windows-sys"
  1664. version = "0.48.0"
  1665. source = "registry+https://github.com/rust-lang/crates.io-index"
  1666. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  1667. dependencies = [
  1668. "windows-targets 0.48.5",
  1669. ]
  1670. [[package]]
  1671. name = "windows-sys"
  1672. version = "0.52.0"
  1673. source = "registry+https://github.com/rust-lang/crates.io-index"
  1674. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  1675. dependencies = [
  1676. "windows-targets 0.52.0",
  1677. ]
  1678. [[package]]
  1679. name = "windows-targets"
  1680. version = "0.48.5"
  1681. source = "registry+https://github.com/rust-lang/crates.io-index"
  1682. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  1683. dependencies = [
  1684. "windows_aarch64_gnullvm 0.48.5",
  1685. "windows_aarch64_msvc 0.48.5",
  1686. "windows_i686_gnu 0.48.5",
  1687. "windows_i686_msvc 0.48.5",
  1688. "windows_x86_64_gnu 0.48.5",
  1689. "windows_x86_64_gnullvm 0.48.5",
  1690. "windows_x86_64_msvc 0.48.5",
  1691. ]
  1692. [[package]]
  1693. name = "windows-targets"
  1694. version = "0.52.0"
  1695. source = "registry+https://github.com/rust-lang/crates.io-index"
  1696. checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
  1697. dependencies = [
  1698. "windows_aarch64_gnullvm 0.52.0",
  1699. "windows_aarch64_msvc 0.52.0",
  1700. "windows_i686_gnu 0.52.0",
  1701. "windows_i686_msvc 0.52.0",
  1702. "windows_x86_64_gnu 0.52.0",
  1703. "windows_x86_64_gnullvm 0.52.0",
  1704. "windows_x86_64_msvc 0.52.0",
  1705. ]
  1706. [[package]]
  1707. name = "windows_aarch64_gnullvm"
  1708. version = "0.48.5"
  1709. source = "registry+https://github.com/rust-lang/crates.io-index"
  1710. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  1711. [[package]]
  1712. name = "windows_aarch64_gnullvm"
  1713. version = "0.52.0"
  1714. source = "registry+https://github.com/rust-lang/crates.io-index"
  1715. checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
  1716. [[package]]
  1717. name = "windows_aarch64_msvc"
  1718. version = "0.48.5"
  1719. source = "registry+https://github.com/rust-lang/crates.io-index"
  1720. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  1721. [[package]]
  1722. name = "windows_aarch64_msvc"
  1723. version = "0.52.0"
  1724. source = "registry+https://github.com/rust-lang/crates.io-index"
  1725. checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
  1726. [[package]]
  1727. name = "windows_i686_gnu"
  1728. version = "0.48.5"
  1729. source = "registry+https://github.com/rust-lang/crates.io-index"
  1730. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  1731. [[package]]
  1732. name = "windows_i686_gnu"
  1733. version = "0.52.0"
  1734. source = "registry+https://github.com/rust-lang/crates.io-index"
  1735. checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
  1736. [[package]]
  1737. name = "windows_i686_msvc"
  1738. version = "0.48.5"
  1739. source = "registry+https://github.com/rust-lang/crates.io-index"
  1740. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  1741. [[package]]
  1742. name = "windows_i686_msvc"
  1743. version = "0.52.0"
  1744. source = "registry+https://github.com/rust-lang/crates.io-index"
  1745. checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
  1746. [[package]]
  1747. name = "windows_x86_64_gnu"
  1748. version = "0.48.5"
  1749. source = "registry+https://github.com/rust-lang/crates.io-index"
  1750. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  1751. [[package]]
  1752. name = "windows_x86_64_gnu"
  1753. version = "0.52.0"
  1754. source = "registry+https://github.com/rust-lang/crates.io-index"
  1755. checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
  1756. [[package]]
  1757. name = "windows_x86_64_gnullvm"
  1758. version = "0.48.5"
  1759. source = "registry+https://github.com/rust-lang/crates.io-index"
  1760. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  1761. [[package]]
  1762. name = "windows_x86_64_gnullvm"
  1763. version = "0.52.0"
  1764. source = "registry+https://github.com/rust-lang/crates.io-index"
  1765. checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
  1766. [[package]]
  1767. name = "windows_x86_64_msvc"
  1768. version = "0.48.5"
  1769. source = "registry+https://github.com/rust-lang/crates.io-index"
  1770. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  1771. [[package]]
  1772. name = "windows_x86_64_msvc"
  1773. version = "0.52.0"
  1774. source = "registry+https://github.com/rust-lang/crates.io-index"
  1775. checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
  1776. [[package]]
  1777. name = "winnow"
  1778. version = "0.5.39"
  1779. source = "registry+https://github.com/rust-lang/crates.io-index"
  1780. checksum = "5389a154b01683d28c77f8f68f49dea75f0a4da32557a58f68ee51ebba472d29"
  1781. dependencies = [
  1782. "memchr",
  1783. ]
  1784. [[package]]
  1785. name = "winreg"
  1786. version = "0.50.0"
  1787. source = "registry+https://github.com/rust-lang/crates.io-index"
  1788. checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
  1789. dependencies = [
  1790. "cfg-if",
  1791. "windows-sys 0.48.0",
  1792. ]