A better Rust ATProto crate
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 7f513e1423ee513a91d9b40649e6426cb80f6abd 470 lines 13 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "aho-corasick" 7version = "1.1.3" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "anstream" 16version = "0.6.20" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" 19dependencies = [ 20 "anstyle", 21 "anstyle-parse", 22 "anstyle-query", 23 "anstyle-wincon", 24 "colorchoice", 25 "is_terminal_polyfill", 26 "utf8parse", 27] 28 29[[package]] 30name = "anstyle" 31version = "1.0.11" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" 34 35[[package]] 36name = "anstyle-parse" 37version = "0.2.7" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 40dependencies = [ 41 "utf8parse", 42] 43 44[[package]] 45name = "anstyle-query" 46version = "1.1.4" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" 49dependencies = [ 50 "windows-sys", 51] 52 53[[package]] 54name = "anstyle-wincon" 55version = "3.0.10" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" 58dependencies = [ 59 "anstyle", 60 "once_cell_polyfill", 61 "windows-sys", 62] 63 64[[package]] 65name = "base-x" 66version = "0.2.11" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 69 70[[package]] 71name = "castaway" 72version = "0.2.4" 73source = "registry+https://github.com/rust-lang/crates.io-index" 74checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a" 75dependencies = [ 76 "rustversion", 77] 78 79[[package]] 80name = "cfg-if" 81version = "1.0.3" 82source = "registry+https://github.com/rust-lang/crates.io-index" 83checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" 84 85[[package]] 86name = "cid" 87version = "0.11.1" 88source = "registry+https://github.com/rust-lang/crates.io-index" 89checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 90dependencies = [ 91 "core2", 92 "multibase", 93 "multihash", 94 "unsigned-varint", 95] 96 97[[package]] 98name = "clap" 99version = "4.5.48" 100source = "registry+https://github.com/rust-lang/crates.io-index" 101checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae" 102dependencies = [ 103 "clap_builder", 104 "clap_derive", 105] 106 107[[package]] 108name = "clap_builder" 109version = "4.5.48" 110source = "registry+https://github.com/rust-lang/crates.io-index" 111checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9" 112dependencies = [ 113 "anstream", 114 "anstyle", 115 "clap_lex", 116 "strsim", 117] 118 119[[package]] 120name = "clap_derive" 121version = "4.5.47" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" 124dependencies = [ 125 "heck", 126 "proc-macro2", 127 "quote", 128 "syn", 129] 130 131[[package]] 132name = "clap_lex" 133version = "0.7.5" 134source = "registry+https://github.com/rust-lang/crates.io-index" 135checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" 136 137[[package]] 138name = "colorchoice" 139version = "1.0.4" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 142 143[[package]] 144name = "compact_str" 145version = "0.9.0" 146source = "registry+https://github.com/rust-lang/crates.io-index" 147checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a" 148dependencies = [ 149 "castaway", 150 "cfg-if", 151 "itoa", 152 "rustversion", 153 "ryu", 154 "static_assertions", 155] 156 157[[package]] 158name = "core2" 159version = "0.4.0" 160source = "registry+https://github.com/rust-lang/crates.io-index" 161checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 162dependencies = [ 163 "memchr", 164] 165 166[[package]] 167name = "data-encoding" 168version = "2.9.0" 169source = "registry+https://github.com/rust-lang/crates.io-index" 170checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 171 172[[package]] 173name = "data-encoding-macro" 174version = "0.1.18" 175source = "registry+https://github.com/rust-lang/crates.io-index" 176checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" 177dependencies = [ 178 "data-encoding", 179 "data-encoding-macro-internal", 180] 181 182[[package]] 183name = "data-encoding-macro-internal" 184version = "0.1.16" 185source = "registry+https://github.com/rust-lang/crates.io-index" 186checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 187dependencies = [ 188 "data-encoding", 189 "syn", 190] 191 192[[package]] 193name = "heck" 194version = "0.5.0" 195source = "registry+https://github.com/rust-lang/crates.io-index" 196checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 197 198[[package]] 199name = "is_terminal_polyfill" 200version = "1.70.1" 201source = "registry+https://github.com/rust-lang/crates.io-index" 202checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 203 204[[package]] 205name = "itoa" 206version = "1.0.15" 207source = "registry+https://github.com/rust-lang/crates.io-index" 208checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 209 210[[package]] 211name = "jacquard" 212version = "0.1.0" 213dependencies = [ 214 "clap", 215] 216 217[[package]] 218name = "jacquard-common" 219version = "0.1.0" 220dependencies = [ 221 "cid", 222 "compact_str", 223 "multibase", 224 "multihash", 225 "regex", 226 "serde", 227] 228 229[[package]] 230name = "memchr" 231version = "2.7.6" 232source = "registry+https://github.com/rust-lang/crates.io-index" 233checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 234 235[[package]] 236name = "multibase" 237version = "0.9.1" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" 240dependencies = [ 241 "base-x", 242 "data-encoding", 243 "data-encoding-macro", 244] 245 246[[package]] 247name = "multihash" 248version = "0.19.3" 249source = "registry+https://github.com/rust-lang/crates.io-index" 250checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 251dependencies = [ 252 "core2", 253 "unsigned-varint", 254] 255 256[[package]] 257name = "once_cell_polyfill" 258version = "1.70.1" 259source = "registry+https://github.com/rust-lang/crates.io-index" 260checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 261 262[[package]] 263name = "proc-macro2" 264version = "1.0.101" 265source = "registry+https://github.com/rust-lang/crates.io-index" 266checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 267dependencies = [ 268 "unicode-ident", 269] 270 271[[package]] 272name = "quote" 273version = "1.0.40" 274source = "registry+https://github.com/rust-lang/crates.io-index" 275checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 276dependencies = [ 277 "proc-macro2", 278] 279 280[[package]] 281name = "regex" 282version = "1.11.3" 283source = "registry+https://github.com/rust-lang/crates.io-index" 284checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c" 285dependencies = [ 286 "aho-corasick", 287 "memchr", 288 "regex-automata", 289 "regex-syntax", 290] 291 292[[package]] 293name = "regex-automata" 294version = "0.4.11" 295source = "registry+https://github.com/rust-lang/crates.io-index" 296checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" 297dependencies = [ 298 "aho-corasick", 299 "memchr", 300 "regex-syntax", 301] 302 303[[package]] 304name = "regex-syntax" 305version = "0.8.6" 306source = "registry+https://github.com/rust-lang/crates.io-index" 307checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" 308 309[[package]] 310name = "rustversion" 311version = "1.0.22" 312source = "registry+https://github.com/rust-lang/crates.io-index" 313checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 314 315[[package]] 316name = "ryu" 317version = "1.0.20" 318source = "registry+https://github.com/rust-lang/crates.io-index" 319checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 320 321[[package]] 322name = "serde" 323version = "1.0.227" 324source = "registry+https://github.com/rust-lang/crates.io-index" 325checksum = "80ece43fc6fbed4eb5392ab50c07334d3e577cbf40997ee896fe7af40bba4245" 326dependencies = [ 327 "serde_core", 328 "serde_derive", 329] 330 331[[package]] 332name = "serde_core" 333version = "1.0.227" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "7a576275b607a2c86ea29e410193df32bc680303c82f31e275bbfcafe8b33be5" 336dependencies = [ 337 "serde_derive", 338] 339 340[[package]] 341name = "serde_derive" 342version = "1.0.227" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "51e694923b8824cf0e9b382adf0f60d4e05f348f357b38833a3fa5ed7c2ede04" 345dependencies = [ 346 "proc-macro2", 347 "quote", 348 "syn", 349] 350 351[[package]] 352name = "static_assertions" 353version = "1.1.0" 354source = "registry+https://github.com/rust-lang/crates.io-index" 355checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 356 357[[package]] 358name = "strsim" 359version = "0.11.1" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 362 363[[package]] 364name = "syn" 365version = "2.0.106" 366source = "registry+https://github.com/rust-lang/crates.io-index" 367checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 368dependencies = [ 369 "proc-macro2", 370 "quote", 371 "unicode-ident", 372] 373 374[[package]] 375name = "unicode-ident" 376version = "1.0.19" 377source = "registry+https://github.com/rust-lang/crates.io-index" 378checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" 379 380[[package]] 381name = "unsigned-varint" 382version = "0.8.0" 383source = "registry+https://github.com/rust-lang/crates.io-index" 384checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 385 386[[package]] 387name = "utf8parse" 388version = "0.2.2" 389source = "registry+https://github.com/rust-lang/crates.io-index" 390checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 391 392[[package]] 393name = "windows-link" 394version = "0.2.0" 395source = "registry+https://github.com/rust-lang/crates.io-index" 396checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65" 397 398[[package]] 399name = "windows-sys" 400version = "0.60.2" 401source = "registry+https://github.com/rust-lang/crates.io-index" 402checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 403dependencies = [ 404 "windows-targets", 405] 406 407[[package]] 408name = "windows-targets" 409version = "0.53.4" 410source = "registry+https://github.com/rust-lang/crates.io-index" 411checksum = "2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b" 412dependencies = [ 413 "windows-link", 414 "windows_aarch64_gnullvm", 415 "windows_aarch64_msvc", 416 "windows_i686_gnu", 417 "windows_i686_gnullvm", 418 "windows_i686_msvc", 419 "windows_x86_64_gnu", 420 "windows_x86_64_gnullvm", 421 "windows_x86_64_msvc", 422] 423 424[[package]] 425name = "windows_aarch64_gnullvm" 426version = "0.53.0" 427source = "registry+https://github.com/rust-lang/crates.io-index" 428checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 429 430[[package]] 431name = "windows_aarch64_msvc" 432version = "0.53.0" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 435 436[[package]] 437name = "windows_i686_gnu" 438version = "0.53.0" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 441 442[[package]] 443name = "windows_i686_gnullvm" 444version = "0.53.0" 445source = "registry+https://github.com/rust-lang/crates.io-index" 446checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 447 448[[package]] 449name = "windows_i686_msvc" 450version = "0.53.0" 451source = "registry+https://github.com/rust-lang/crates.io-index" 452checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 453 454[[package]] 455name = "windows_x86_64_gnu" 456version = "0.53.0" 457source = "registry+https://github.com/rust-lang/crates.io-index" 458checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 459 460[[package]] 461name = "windows_x86_64_gnullvm" 462version = "0.53.0" 463source = "registry+https://github.com/rust-lang/crates.io-index" 464checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 465 466[[package]] 467name = "windows_x86_64_msvc" 468version = "0.53.0" 469source = "registry+https://github.com/rust-lang/crates.io-index" 470checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"