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.

427 lines
11 KiB

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 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 = "acmed"
  6. version = "0.25.0-dev"
  7. dependencies = [
  8. "clap",
  9. "tokio",
  10. "tracing",
  11. "tracing-subscriber",
  12. ]
  13. [[package]]
  14. name = "addr2line"
  15. version = "0.24.2"
  16. source = "registry+https://github.com/rust-lang/crates.io-index"
  17. checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
  18. dependencies = [
  19. "gimli",
  20. ]
  21. [[package]]
  22. name = "adler2"
  23. version = "2.0.0"
  24. source = "registry+https://github.com/rust-lang/crates.io-index"
  25. checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
  26. [[package]]
  27. name = "anstream"
  28. version = "0.6.18"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
  31. dependencies = [
  32. "anstyle",
  33. "anstyle-parse",
  34. "anstyle-query",
  35. "anstyle-wincon",
  36. "colorchoice",
  37. "is_terminal_polyfill",
  38. "utf8parse",
  39. ]
  40. [[package]]
  41. name = "anstyle"
  42. version = "1.0.10"
  43. source = "registry+https://github.com/rust-lang/crates.io-index"
  44. checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
  45. [[package]]
  46. name = "anstyle-parse"
  47. version = "0.2.6"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
  50. dependencies = [
  51. "utf8parse",
  52. ]
  53. [[package]]
  54. name = "anstyle-query"
  55. version = "1.1.2"
  56. source = "registry+https://github.com/rust-lang/crates.io-index"
  57. checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
  58. dependencies = [
  59. "windows-sys",
  60. ]
  61. [[package]]
  62. name = "anstyle-wincon"
  63. version = "3.0.6"
  64. source = "registry+https://github.com/rust-lang/crates.io-index"
  65. checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
  66. dependencies = [
  67. "anstyle",
  68. "windows-sys",
  69. ]
  70. [[package]]
  71. name = "backtrace"
  72. version = "0.3.74"
  73. source = "registry+https://github.com/rust-lang/crates.io-index"
  74. checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
  75. dependencies = [
  76. "addr2line",
  77. "cfg-if",
  78. "libc",
  79. "miniz_oxide",
  80. "object",
  81. "rustc-demangle",
  82. "windows-targets",
  83. ]
  84. [[package]]
  85. name = "cfg-if"
  86. version = "1.0.0"
  87. source = "registry+https://github.com/rust-lang/crates.io-index"
  88. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  89. [[package]]
  90. name = "clap"
  91. version = "4.5.23"
  92. source = "registry+https://github.com/rust-lang/crates.io-index"
  93. checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
  94. dependencies = [
  95. "clap_builder",
  96. "clap_derive",
  97. ]
  98. [[package]]
  99. name = "clap_builder"
  100. version = "4.5.23"
  101. source = "registry+https://github.com/rust-lang/crates.io-index"
  102. checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
  103. dependencies = [
  104. "anstream",
  105. "anstyle",
  106. "clap_lex",
  107. ]
  108. [[package]]
  109. name = "clap_derive"
  110. version = "4.5.18"
  111. source = "registry+https://github.com/rust-lang/crates.io-index"
  112. checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
  113. dependencies = [
  114. "heck",
  115. "proc-macro2",
  116. "quote",
  117. "syn",
  118. ]
  119. [[package]]
  120. name = "clap_lex"
  121. version = "0.7.4"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
  124. [[package]]
  125. name = "colorchoice"
  126. version = "1.0.3"
  127. source = "registry+https://github.com/rust-lang/crates.io-index"
  128. checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
  129. [[package]]
  130. name = "gimli"
  131. version = "0.31.1"
  132. source = "registry+https://github.com/rust-lang/crates.io-index"
  133. checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
  134. [[package]]
  135. name = "heck"
  136. version = "0.5.0"
  137. source = "registry+https://github.com/rust-lang/crates.io-index"
  138. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  139. [[package]]
  140. name = "is_terminal_polyfill"
  141. version = "1.70.1"
  142. source = "registry+https://github.com/rust-lang/crates.io-index"
  143. checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
  144. [[package]]
  145. name = "lazy_static"
  146. version = "1.5.0"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  149. [[package]]
  150. name = "libc"
  151. version = "0.2.169"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
  154. [[package]]
  155. name = "memchr"
  156. version = "2.7.4"
  157. source = "registry+https://github.com/rust-lang/crates.io-index"
  158. checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
  159. [[package]]
  160. name = "miniz_oxide"
  161. version = "0.8.2"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
  164. dependencies = [
  165. "adler2",
  166. ]
  167. [[package]]
  168. name = "nu-ansi-term"
  169. version = "0.46.0"
  170. source = "registry+https://github.com/rust-lang/crates.io-index"
  171. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  172. dependencies = [
  173. "overload",
  174. "winapi",
  175. ]
  176. [[package]]
  177. name = "object"
  178. version = "0.36.6"
  179. source = "registry+https://github.com/rust-lang/crates.io-index"
  180. checksum = "08dde84f120894086dbb40c7a0257f76fdc72b6f52cdb56c2b5121b2f81b0c83"
  181. dependencies = [
  182. "memchr",
  183. ]
  184. [[package]]
  185. name = "once_cell"
  186. version = "1.20.2"
  187. source = "registry+https://github.com/rust-lang/crates.io-index"
  188. checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
  189. [[package]]
  190. name = "overload"
  191. version = "0.1.1"
  192. source = "registry+https://github.com/rust-lang/crates.io-index"
  193. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  194. [[package]]
  195. name = "pin-project-lite"
  196. version = "0.2.15"
  197. source = "registry+https://github.com/rust-lang/crates.io-index"
  198. checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
  199. [[package]]
  200. name = "proc-macro2"
  201. version = "1.0.92"
  202. source = "registry+https://github.com/rust-lang/crates.io-index"
  203. checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
  204. dependencies = [
  205. "unicode-ident",
  206. ]
  207. [[package]]
  208. name = "quote"
  209. version = "1.0.37"
  210. source = "registry+https://github.com/rust-lang/crates.io-index"
  211. checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
  212. dependencies = [
  213. "proc-macro2",
  214. ]
  215. [[package]]
  216. name = "rustc-demangle"
  217. version = "0.1.24"
  218. source = "registry+https://github.com/rust-lang/crates.io-index"
  219. checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
  220. [[package]]
  221. name = "sharded-slab"
  222. version = "0.1.7"
  223. source = "registry+https://github.com/rust-lang/crates.io-index"
  224. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  225. dependencies = [
  226. "lazy_static",
  227. ]
  228. [[package]]
  229. name = "syn"
  230. version = "2.0.90"
  231. source = "registry+https://github.com/rust-lang/crates.io-index"
  232. checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
  233. dependencies = [
  234. "proc-macro2",
  235. "quote",
  236. "unicode-ident",
  237. ]
  238. [[package]]
  239. name = "thread_local"
  240. version = "1.1.8"
  241. source = "registry+https://github.com/rust-lang/crates.io-index"
  242. checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
  243. dependencies = [
  244. "cfg-if",
  245. "once_cell",
  246. ]
  247. [[package]]
  248. name = "tokio"
  249. version = "1.42.0"
  250. source = "registry+https://github.com/rust-lang/crates.io-index"
  251. checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
  252. dependencies = [
  253. "backtrace",
  254. "pin-project-lite",
  255. ]
  256. [[package]]
  257. name = "tracing"
  258. version = "0.1.41"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
  261. dependencies = [
  262. "pin-project-lite",
  263. "tracing-core",
  264. ]
  265. [[package]]
  266. name = "tracing-core"
  267. version = "0.1.33"
  268. source = "registry+https://github.com/rust-lang/crates.io-index"
  269. checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
  270. dependencies = [
  271. "once_cell",
  272. ]
  273. [[package]]
  274. name = "tracing-subscriber"
  275. version = "0.3.19"
  276. source = "registry+https://github.com/rust-lang/crates.io-index"
  277. checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
  278. dependencies = [
  279. "nu-ansi-term",
  280. "sharded-slab",
  281. "thread_local",
  282. "tracing-core",
  283. ]
  284. [[package]]
  285. name = "unicode-ident"
  286. version = "1.0.14"
  287. source = "registry+https://github.com/rust-lang/crates.io-index"
  288. checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
  289. [[package]]
  290. name = "utf8parse"
  291. version = "0.2.2"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
  294. [[package]]
  295. name = "winapi"
  296. version = "0.3.9"
  297. source = "registry+https://github.com/rust-lang/crates.io-index"
  298. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  299. dependencies = [
  300. "winapi-i686-pc-windows-gnu",
  301. "winapi-x86_64-pc-windows-gnu",
  302. ]
  303. [[package]]
  304. name = "winapi-i686-pc-windows-gnu"
  305. version = "0.4.0"
  306. source = "registry+https://github.com/rust-lang/crates.io-index"
  307. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  308. [[package]]
  309. name = "winapi-x86_64-pc-windows-gnu"
  310. version = "0.4.0"
  311. source = "registry+https://github.com/rust-lang/crates.io-index"
  312. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  313. [[package]]
  314. name = "windows-sys"
  315. version = "0.59.0"
  316. source = "registry+https://github.com/rust-lang/crates.io-index"
  317. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  318. dependencies = [
  319. "windows-targets",
  320. ]
  321. [[package]]
  322. name = "windows-targets"
  323. version = "0.52.6"
  324. source = "registry+https://github.com/rust-lang/crates.io-index"
  325. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  326. dependencies = [
  327. "windows_aarch64_gnullvm",
  328. "windows_aarch64_msvc",
  329. "windows_i686_gnu",
  330. "windows_i686_gnullvm",
  331. "windows_i686_msvc",
  332. "windows_x86_64_gnu",
  333. "windows_x86_64_gnullvm",
  334. "windows_x86_64_msvc",
  335. ]
  336. [[package]]
  337. name = "windows_aarch64_gnullvm"
  338. version = "0.52.6"
  339. source = "registry+https://github.com/rust-lang/crates.io-index"
  340. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  341. [[package]]
  342. name = "windows_aarch64_msvc"
  343. version = "0.52.6"
  344. source = "registry+https://github.com/rust-lang/crates.io-index"
  345. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  346. [[package]]
  347. name = "windows_i686_gnu"
  348. version = "0.52.6"
  349. source = "registry+https://github.com/rust-lang/crates.io-index"
  350. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  351. [[package]]
  352. name = "windows_i686_gnullvm"
  353. version = "0.52.6"
  354. source = "registry+https://github.com/rust-lang/crates.io-index"
  355. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  356. [[package]]
  357. name = "windows_i686_msvc"
  358. version = "0.52.6"
  359. source = "registry+https://github.com/rust-lang/crates.io-index"
  360. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  361. [[package]]
  362. name = "windows_x86_64_gnu"
  363. version = "0.52.6"
  364. source = "registry+https://github.com/rust-lang/crates.io-index"
  365. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  366. [[package]]
  367. name = "windows_x86_64_gnullvm"
  368. version = "0.52.6"
  369. source = "registry+https://github.com/rust-lang/crates.io-index"
  370. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  371. [[package]]
  372. name = "windows_x86_64_msvc"
  373. version = "0.52.6"
  374. source = "registry+https://github.com/rust-lang/crates.io-index"
  375. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"