Cargo.lock 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "anyhow"
  6. version = "1.0.70"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
  9. [[package]]
  10. name = "autocfg"
  11. version = "1.1.0"
  12. source = "registry+https://github.com/rust-lang/crates.io-index"
  13. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  14. [[package]]
  15. name = "bitflags"
  16. version = "1.3.2"
  17. source = "registry+https://github.com/rust-lang/crates.io-index"
  18. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  19. [[package]]
  20. name = "cairo-rs"
  21. version = "0.17.0"
  22. source = "registry+https://github.com/rust-lang/crates.io-index"
  23. checksum = "a8af54f5d48af1226928adc1f57edd22f5df1349e7da1fc96ae15cf43db0e871"
  24. dependencies = [
  25. "bitflags",
  26. "cairo-sys-rs",
  27. "glib",
  28. "libc",
  29. "once_cell",
  30. "thiserror",
  31. ]
  32. [[package]]
  33. name = "cairo-sys-rs"
  34. version = "0.17.0"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. checksum = "f55382a01d30e5e53f185eee269124f5e21ab526595b872751278dfbb463594e"
  37. dependencies = [
  38. "glib-sys",
  39. "libc",
  40. "system-deps",
  41. ]
  42. [[package]]
  43. name = "cfg-expr"
  44. version = "0.14.0"
  45. source = "registry+https://github.com/rust-lang/crates.io-index"
  46. checksum = "a35b255461940a32985c627ce82900867c61db1659764d3675ea81963f72a4c6"
  47. dependencies = [
  48. "smallvec",
  49. ]
  50. [[package]]
  51. name = "field-offset"
  52. version = "0.3.5"
  53. source = "registry+https://github.com/rust-lang/crates.io-index"
  54. checksum = "a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535"
  55. dependencies = [
  56. "memoffset",
  57. "rustc_version",
  58. ]
  59. [[package]]
  60. name = "futures-channel"
  61. version = "0.3.28"
  62. source = "registry+https://github.com/rust-lang/crates.io-index"
  63. checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
  64. dependencies = [
  65. "futures-core",
  66. ]
  67. [[package]]
  68. name = "futures-core"
  69. version = "0.3.28"
  70. source = "registry+https://github.com/rust-lang/crates.io-index"
  71. checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
  72. [[package]]
  73. name = "futures-executor"
  74. version = "0.3.28"
  75. source = "registry+https://github.com/rust-lang/crates.io-index"
  76. checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
  77. dependencies = [
  78. "futures-core",
  79. "futures-task",
  80. "futures-util",
  81. ]
  82. [[package]]
  83. name = "futures-io"
  84. version = "0.3.28"
  85. source = "registry+https://github.com/rust-lang/crates.io-index"
  86. checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
  87. [[package]]
  88. name = "futures-macro"
  89. version = "0.3.28"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
  92. dependencies = [
  93. "proc-macro2",
  94. "quote",
  95. "syn 2.0.13",
  96. ]
  97. [[package]]
  98. name = "futures-task"
  99. version = "0.3.28"
  100. source = "registry+https://github.com/rust-lang/crates.io-index"
  101. checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
  102. [[package]]
  103. name = "futures-util"
  104. version = "0.3.28"
  105. source = "registry+https://github.com/rust-lang/crates.io-index"
  106. checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
  107. dependencies = [
  108. "futures-core",
  109. "futures-macro",
  110. "futures-task",
  111. "pin-project-lite",
  112. "pin-utils",
  113. "slab",
  114. ]
  115. [[package]]
  116. name = "gdk-pixbuf"
  117. version = "0.17.0"
  118. source = "registry+https://github.com/rust-lang/crates.io-index"
  119. checksum = "b023fbe0c6b407bd3d9805d107d9800da3829dc5a676653210f1d5f16d7f59bf"
  120. dependencies = [
  121. "bitflags",
  122. "gdk-pixbuf-sys",
  123. "gio",
  124. "glib",
  125. "libc",
  126. "once_cell",
  127. ]
  128. [[package]]
  129. name = "gdk-pixbuf-sys"
  130. version = "0.17.0"
  131. source = "registry+https://github.com/rust-lang/crates.io-index"
  132. checksum = "7b41bd2b44ed49d99277d3925652a163038bd5ed943ec9809338ffb2f4391e3b"
  133. dependencies = [
  134. "gio-sys",
  135. "glib-sys",
  136. "gobject-sys",
  137. "libc",
  138. "system-deps",
  139. ]
  140. [[package]]
  141. name = "gdk4"
  142. version = "0.6.3"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "c3abf96408a26e3eddf881a7f893a1e111767137136e347745e8ea6ed12731ff"
  145. dependencies = [
  146. "bitflags",
  147. "cairo-rs",
  148. "gdk-pixbuf",
  149. "gdk4-sys",
  150. "gio",
  151. "glib",
  152. "libc",
  153. "pango",
  154. ]
  155. [[package]]
  156. name = "gdk4-sys"
  157. version = "0.6.3"
  158. source = "registry+https://github.com/rust-lang/crates.io-index"
  159. checksum = "1bc92aa1608c089c49393d014c38ac0390d01e4841e1fedaa75dbcef77aaed64"
  160. dependencies = [
  161. "cairo-sys-rs",
  162. "gdk-pixbuf-sys",
  163. "gio-sys",
  164. "glib-sys",
  165. "gobject-sys",
  166. "libc",
  167. "pango-sys",
  168. "pkg-config",
  169. "system-deps",
  170. ]
  171. [[package]]
  172. name = "gio"
  173. version = "0.17.4"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. checksum = "2261a3b4e922ec676d1c27ac466218c38cf5dcb49a759129e54bb5046e442125"
  176. dependencies = [
  177. "bitflags",
  178. "futures-channel",
  179. "futures-core",
  180. "futures-io",
  181. "futures-util",
  182. "gio-sys",
  183. "glib",
  184. "libc",
  185. "once_cell",
  186. "pin-project-lite",
  187. "smallvec",
  188. "thiserror",
  189. ]
  190. [[package]]
  191. name = "gio-sys"
  192. version = "0.17.4"
  193. source = "registry+https://github.com/rust-lang/crates.io-index"
  194. checksum = "6b1d43b0d7968b48455244ecafe41192871257f5740aa6b095eb19db78e362a5"
  195. dependencies = [
  196. "glib-sys",
  197. "gobject-sys",
  198. "libc",
  199. "system-deps",
  200. "winapi",
  201. ]
  202. [[package]]
  203. name = "glib"
  204. version = "0.17.8"
  205. source = "registry+https://github.com/rust-lang/crates.io-index"
  206. checksum = "6cbc688e6c33f2fd89d83864a9e6caaaef83b5f608922b99ac184e436d15b623"
  207. dependencies = [
  208. "bitflags",
  209. "futures-channel",
  210. "futures-core",
  211. "futures-executor",
  212. "futures-task",
  213. "futures-util",
  214. "gio-sys",
  215. "glib-macros",
  216. "glib-sys",
  217. "gobject-sys",
  218. "libc",
  219. "memchr",
  220. "once_cell",
  221. "smallvec",
  222. "thiserror",
  223. ]
  224. [[package]]
  225. name = "glib-build-tools"
  226. version = "0.17.0"
  227. source = "registry+https://github.com/rust-lang/crates.io-index"
  228. checksum = "8f8480c9ba9cc06aa8d5baf446037f8dc237bee127e9b62080c4db7e293d8ea0"
  229. [[package]]
  230. name = "glib-macros"
  231. version = "0.17.7"
  232. source = "registry+https://github.com/rust-lang/crates.io-index"
  233. checksum = "bc4cf346122086f196260783aa58987190dbd5f43bfab01946d2bf9786e8d9ef"
  234. dependencies = [
  235. "anyhow",
  236. "heck",
  237. "proc-macro-crate",
  238. "proc-macro-error",
  239. "proc-macro2",
  240. "quote",
  241. "syn 1.0.109",
  242. ]
  243. [[package]]
  244. name = "glib-sys"
  245. version = "0.17.4"
  246. source = "registry+https://github.com/rust-lang/crates.io-index"
  247. checksum = "49f00ad0a1bf548e61adfff15d83430941d9e1bb620e334f779edd1c745680a5"
  248. dependencies = [
  249. "libc",
  250. "system-deps",
  251. ]
  252. [[package]]
  253. name = "gobject-sys"
  254. version = "0.17.4"
  255. source = "registry+https://github.com/rust-lang/crates.io-index"
  256. checksum = "15e75b0000a64632b2d8ca3cf856af9308e3a970844f6e9659bd197f026793d0"
  257. dependencies = [
  258. "glib-sys",
  259. "libc",
  260. "system-deps",
  261. ]
  262. [[package]]
  263. name = "graphene-rs"
  264. version = "0.17.1"
  265. source = "registry+https://github.com/rust-lang/crates.io-index"
  266. checksum = "21cf11565bb0e4dfc2f99d4775b6c329f0d40a2cff9c0066214d31a0e1b46256"
  267. dependencies = [
  268. "glib",
  269. "graphene-sys",
  270. "libc",
  271. ]
  272. [[package]]
  273. name = "graphene-sys"
  274. version = "0.17.0"
  275. source = "registry+https://github.com/rust-lang/crates.io-index"
  276. checksum = "cf80a4849a8d9565410a8fec6fc3678e9c617f4ac7be182ca55ab75016e07af9"
  277. dependencies = [
  278. "glib-sys",
  279. "libc",
  280. "pkg-config",
  281. "system-deps",
  282. ]
  283. [[package]]
  284. name = "gsk4"
  285. version = "0.6.3"
  286. source = "registry+https://github.com/rust-lang/crates.io-index"
  287. checksum = "6f01ef44fa7cac15e2da9978529383e6bee03e570ba5bf7036b4c10a15cc3a3c"
  288. dependencies = [
  289. "bitflags",
  290. "cairo-rs",
  291. "gdk4",
  292. "glib",
  293. "graphene-rs",
  294. "gsk4-sys",
  295. "libc",
  296. "pango",
  297. ]
  298. [[package]]
  299. name = "gsk4-sys"
  300. version = "0.6.3"
  301. source = "registry+https://github.com/rust-lang/crates.io-index"
  302. checksum = "c07a84fb4dcf1323d29435aa85e2f5f58bef564342bef06775ec7bd0da1f01b0"
  303. dependencies = [
  304. "cairo-sys-rs",
  305. "gdk4-sys",
  306. "glib-sys",
  307. "gobject-sys",
  308. "graphene-sys",
  309. "libc",
  310. "pango-sys",
  311. "system-deps",
  312. ]
  313. [[package]]
  314. name = "gtk4"
  315. version = "0.6.4"
  316. source = "registry+https://github.com/rust-lang/crates.io-index"
  317. checksum = "1e30e124b5a605f6f5513db13958bfcd51d746607b20bc7bb718b33e303274ed"
  318. dependencies = [
  319. "bitflags",
  320. "cairo-rs",
  321. "field-offset",
  322. "futures-channel",
  323. "gdk-pixbuf",
  324. "gdk4",
  325. "gio",
  326. "glib",
  327. "graphene-rs",
  328. "gsk4",
  329. "gtk4-macros",
  330. "gtk4-sys",
  331. "libc",
  332. "once_cell",
  333. "pango",
  334. ]
  335. [[package]]
  336. name = "gtk4-macros"
  337. version = "0.6.5"
  338. source = "registry+https://github.com/rust-lang/crates.io-index"
  339. checksum = "f041a797fb098bfb06e432c61738133604bfa3af57f13f1da3b9d46271422ef0"
  340. dependencies = [
  341. "anyhow",
  342. "proc-macro-crate",
  343. "proc-macro-error",
  344. "proc-macro2",
  345. "quote",
  346. "syn 1.0.109",
  347. ]
  348. [[package]]
  349. name = "gtk4-sys"
  350. version = "0.6.3"
  351. source = "registry+https://github.com/rust-lang/crates.io-index"
  352. checksum = "5f8283f707b07e019e76c7f2934bdd4180c277e08aa93f4c0d8dd07b7a34e22f"
  353. dependencies = [
  354. "cairo-sys-rs",
  355. "gdk-pixbuf-sys",
  356. "gdk4-sys",
  357. "gio-sys",
  358. "glib-sys",
  359. "gobject-sys",
  360. "graphene-sys",
  361. "gsk4-sys",
  362. "libc",
  363. "pango-sys",
  364. "system-deps",
  365. ]
  366. [[package]]
  367. name = "hashbrown"
  368. version = "0.12.3"
  369. source = "registry+https://github.com/rust-lang/crates.io-index"
  370. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  371. [[package]]
  372. name = "heck"
  373. version = "0.4.1"
  374. source = "registry+https://github.com/rust-lang/crates.io-index"
  375. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  376. [[package]]
  377. name = "indexmap"
  378. version = "1.9.3"
  379. source = "registry+https://github.com/rust-lang/crates.io-index"
  380. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  381. dependencies = [
  382. "autocfg",
  383. "hashbrown",
  384. ]
  385. [[package]]
  386. name = "libadwaita"
  387. version = "0.4.1"
  388. source = "registry+https://github.com/rust-lang/crates.io-index"
  389. checksum = "e82776542b73ac5691b2bddf3e2aaf0157d34f35193fb522de2fc258006c1785"
  390. dependencies = [
  391. "bitflags",
  392. "futures-channel",
  393. "gdk-pixbuf",
  394. "gdk4",
  395. "gio",
  396. "glib",
  397. "gtk4",
  398. "libadwaita-sys",
  399. "libc",
  400. "once_cell",
  401. "pango",
  402. ]
  403. [[package]]
  404. name = "libadwaita-sys"
  405. version = "0.4.1"
  406. source = "registry+https://github.com/rust-lang/crates.io-index"
  407. checksum = "91be74a61f26efa6946c02dad76eb4cd3021addb0ff85dde445c1cd41d2eca2d"
  408. dependencies = [
  409. "gdk4-sys",
  410. "gio-sys",
  411. "glib-sys",
  412. "gobject-sys",
  413. "gtk4-sys",
  414. "libc",
  415. "pango-sys",
  416. "system-deps",
  417. ]
  418. [[package]]
  419. name = "libc"
  420. version = "0.2.141"
  421. source = "registry+https://github.com/rust-lang/crates.io-index"
  422. checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
  423. [[package]]
  424. name = "memchr"
  425. version = "2.5.0"
  426. source = "registry+https://github.com/rust-lang/crates.io-index"
  427. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  428. [[package]]
  429. name = "memoffset"
  430. version = "0.8.0"
  431. source = "registry+https://github.com/rust-lang/crates.io-index"
  432. checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
  433. dependencies = [
  434. "autocfg",
  435. ]
  436. [[package]]
  437. name = "once_cell"
  438. version = "1.17.1"
  439. source = "registry+https://github.com/rust-lang/crates.io-index"
  440. checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
  441. [[package]]
  442. name = "pango"
  443. version = "0.17.4"
  444. source = "registry+https://github.com/rust-lang/crates.io-index"
  445. checksum = "52c280b82a881e4208afb3359a8e7fde27a1b272280981f1f34610bed5770d37"
  446. dependencies = [
  447. "bitflags",
  448. "gio",
  449. "glib",
  450. "libc",
  451. "once_cell",
  452. "pango-sys",
  453. ]
  454. [[package]]
  455. name = "pango-sys"
  456. version = "0.17.0"
  457. source = "registry+https://github.com/rust-lang/crates.io-index"
  458. checksum = "4293d0f0b5525eb5c24734d30b0ed02cd02aa734f216883f376b54de49625de8"
  459. dependencies = [
  460. "glib-sys",
  461. "gobject-sys",
  462. "libc",
  463. "system-deps",
  464. ]
  465. [[package]]
  466. name = "pin-project-lite"
  467. version = "0.2.9"
  468. source = "registry+https://github.com/rust-lang/crates.io-index"
  469. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  470. [[package]]
  471. name = "pin-utils"
  472. version = "0.1.0"
  473. source = "registry+https://github.com/rust-lang/crates.io-index"
  474. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  475. [[package]]
  476. name = "pkg-config"
  477. version = "0.3.26"
  478. source = "registry+https://github.com/rust-lang/crates.io-index"
  479. checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
  480. [[package]]
  481. name = "prionote"
  482. version = "0.1.0"
  483. dependencies = [
  484. "glib",
  485. "glib-build-tools",
  486. "gtk4",
  487. "libadwaita",
  488. ]
  489. [[package]]
  490. name = "proc-macro-crate"
  491. version = "1.3.1"
  492. source = "registry+https://github.com/rust-lang/crates.io-index"
  493. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  494. dependencies = [
  495. "once_cell",
  496. "toml_edit",
  497. ]
  498. [[package]]
  499. name = "proc-macro-error"
  500. version = "1.0.4"
  501. source = "registry+https://github.com/rust-lang/crates.io-index"
  502. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  503. dependencies = [
  504. "proc-macro-error-attr",
  505. "proc-macro2",
  506. "quote",
  507. "syn 1.0.109",
  508. "version_check",
  509. ]
  510. [[package]]
  511. name = "proc-macro-error-attr"
  512. version = "1.0.4"
  513. source = "registry+https://github.com/rust-lang/crates.io-index"
  514. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  515. dependencies = [
  516. "proc-macro2",
  517. "quote",
  518. "version_check",
  519. ]
  520. [[package]]
  521. name = "proc-macro2"
  522. version = "1.0.56"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
  525. dependencies = [
  526. "unicode-ident",
  527. ]
  528. [[package]]
  529. name = "quote"
  530. version = "1.0.26"
  531. source = "registry+https://github.com/rust-lang/crates.io-index"
  532. checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
  533. dependencies = [
  534. "proc-macro2",
  535. ]
  536. [[package]]
  537. name = "rustc_version"
  538. version = "0.4.0"
  539. source = "registry+https://github.com/rust-lang/crates.io-index"
  540. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  541. dependencies = [
  542. "semver",
  543. ]
  544. [[package]]
  545. name = "semver"
  546. version = "1.0.17"
  547. source = "registry+https://github.com/rust-lang/crates.io-index"
  548. checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
  549. [[package]]
  550. name = "serde"
  551. version = "1.0.159"
  552. source = "registry+https://github.com/rust-lang/crates.io-index"
  553. checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
  554. [[package]]
  555. name = "serde_spanned"
  556. version = "0.6.1"
  557. source = "registry+https://github.com/rust-lang/crates.io-index"
  558. checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4"
  559. dependencies = [
  560. "serde",
  561. ]
  562. [[package]]
  563. name = "slab"
  564. version = "0.4.8"
  565. source = "registry+https://github.com/rust-lang/crates.io-index"
  566. checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
  567. dependencies = [
  568. "autocfg",
  569. ]
  570. [[package]]
  571. name = "smallvec"
  572. version = "1.10.0"
  573. source = "registry+https://github.com/rust-lang/crates.io-index"
  574. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  575. [[package]]
  576. name = "syn"
  577. version = "1.0.109"
  578. source = "registry+https://github.com/rust-lang/crates.io-index"
  579. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  580. dependencies = [
  581. "proc-macro2",
  582. "quote",
  583. "unicode-ident",
  584. ]
  585. [[package]]
  586. name = "syn"
  587. version = "2.0.13"
  588. source = "registry+https://github.com/rust-lang/crates.io-index"
  589. checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec"
  590. dependencies = [
  591. "proc-macro2",
  592. "quote",
  593. "unicode-ident",
  594. ]
  595. [[package]]
  596. name = "system-deps"
  597. version = "6.0.4"
  598. source = "registry+https://github.com/rust-lang/crates.io-index"
  599. checksum = "555fc8147af6256f3931a36bb83ad0023240ce9cf2b319dec8236fd1f220b05f"
  600. dependencies = [
  601. "cfg-expr",
  602. "heck",
  603. "pkg-config",
  604. "toml",
  605. "version-compare",
  606. ]
  607. [[package]]
  608. name = "thiserror"
  609. version = "1.0.40"
  610. source = "registry+https://github.com/rust-lang/crates.io-index"
  611. checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
  612. dependencies = [
  613. "thiserror-impl",
  614. ]
  615. [[package]]
  616. name = "thiserror-impl"
  617. version = "1.0.40"
  618. source = "registry+https://github.com/rust-lang/crates.io-index"
  619. checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
  620. dependencies = [
  621. "proc-macro2",
  622. "quote",
  623. "syn 2.0.13",
  624. ]
  625. [[package]]
  626. name = "toml"
  627. version = "0.7.3"
  628. source = "registry+https://github.com/rust-lang/crates.io-index"
  629. checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21"
  630. dependencies = [
  631. "serde",
  632. "serde_spanned",
  633. "toml_datetime",
  634. "toml_edit",
  635. ]
  636. [[package]]
  637. name = "toml_datetime"
  638. version = "0.6.1"
  639. source = "registry+https://github.com/rust-lang/crates.io-index"
  640. checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
  641. dependencies = [
  642. "serde",
  643. ]
  644. [[package]]
  645. name = "toml_edit"
  646. version = "0.19.8"
  647. source = "registry+https://github.com/rust-lang/crates.io-index"
  648. checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13"
  649. dependencies = [
  650. "indexmap",
  651. "serde",
  652. "serde_spanned",
  653. "toml_datetime",
  654. "winnow",
  655. ]
  656. [[package]]
  657. name = "unicode-ident"
  658. version = "1.0.8"
  659. source = "registry+https://github.com/rust-lang/crates.io-index"
  660. checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
  661. [[package]]
  662. name = "version-compare"
  663. version = "0.1.1"
  664. source = "registry+https://github.com/rust-lang/crates.io-index"
  665. checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
  666. [[package]]
  667. name = "version_check"
  668. version = "0.9.4"
  669. source = "registry+https://github.com/rust-lang/crates.io-index"
  670. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  671. [[package]]
  672. name = "winapi"
  673. version = "0.3.9"
  674. source = "registry+https://github.com/rust-lang/crates.io-index"
  675. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  676. dependencies = [
  677. "winapi-i686-pc-windows-gnu",
  678. "winapi-x86_64-pc-windows-gnu",
  679. ]
  680. [[package]]
  681. name = "winapi-i686-pc-windows-gnu"
  682. version = "0.4.0"
  683. source = "registry+https://github.com/rust-lang/crates.io-index"
  684. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  685. [[package]]
  686. name = "winapi-x86_64-pc-windows-gnu"
  687. version = "0.4.0"
  688. source = "registry+https://github.com/rust-lang/crates.io-index"
  689. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  690. [[package]]
  691. name = "winnow"
  692. version = "0.4.1"
  693. source = "registry+https://github.com/rust-lang/crates.io-index"
  694. checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28"
  695. dependencies = [
  696. "memchr",
  697. ]