This repository has no description
0

Configure Feed

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

at master 11 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 = "anstream" 7version = "0.6.21" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" 10dependencies = [ 11 "anstyle", 12 "anstyle-parse", 13 "anstyle-query", 14 "anstyle-wincon", 15 "colorchoice", 16 "is_terminal_polyfill", 17 "utf8parse", 18] 19 20[[package]] 21name = "anstyle" 22version = "1.0.13" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" 25 26[[package]] 27name = "anstyle-parse" 28version = "0.2.7" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 31dependencies = [ 32 "utf8parse", 33] 34 35[[package]] 36name = "anstyle-query" 37version = "1.1.5" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" 40dependencies = [ 41 "windows-sys", 42] 43 44[[package]] 45name = "anstyle-wincon" 46version = "3.0.11" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" 49dependencies = [ 50 "anstyle", 51 "once_cell_polyfill", 52 "windows-sys", 53] 54 55[[package]] 56name = "base64" 57version = "0.22.1" 58source = "registry+https://github.com/rust-lang/crates.io-index" 59checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 60 61[[package]] 62name = "cfg-if" 63version = "1.0.4" 64source = "registry+https://github.com/rust-lang/crates.io-index" 65checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 66 67[[package]] 68name = "clap" 69version = "4.5.53" 70source = "registry+https://github.com/rust-lang/crates.io-index" 71checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8" 72dependencies = [ 73 "clap_builder", 74 "clap_derive", 75] 76 77[[package]] 78name = "clap_builder" 79version = "4.5.53" 80source = "registry+https://github.com/rust-lang/crates.io-index" 81checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00" 82dependencies = [ 83 "anstream", 84 "anstyle", 85 "clap_lex", 86 "strsim", 87] 88 89[[package]] 90name = "clap_derive" 91version = "4.5.49" 92source = "registry+https://github.com/rust-lang/crates.io-index" 93checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" 94dependencies = [ 95 "heck", 96 "proc-macro2", 97 "quote", 98 "syn", 99] 100 101[[package]] 102name = "clap_lex" 103version = "0.7.6" 104source = "registry+https://github.com/rust-lang/crates.io-index" 105checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" 106 107[[package]] 108name = "colorchoice" 109version = "1.0.4" 110source = "registry+https://github.com/rust-lang/crates.io-index" 111checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 112 113[[package]] 114name = "equivalent" 115version = "1.0.2" 116source = "registry+https://github.com/rust-lang/crates.io-index" 117checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 118 119[[package]] 120name = "getrandom" 121version = "0.3.4" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 124dependencies = [ 125 "cfg-if", 126 "libc", 127 "r-efi", 128 "wasip2", 129] 130 131[[package]] 132name = "hashbrown" 133version = "0.16.1" 134source = "registry+https://github.com/rust-lang/crates.io-index" 135checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 136 137[[package]] 138name = "heck" 139version = "0.5.0" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 142 143[[package]] 144name = "indexmap" 145version = "2.12.1" 146source = "registry+https://github.com/rust-lang/crates.io-index" 147checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" 148dependencies = [ 149 "equivalent", 150 "hashbrown", 151] 152 153[[package]] 154name = "is_terminal_polyfill" 155version = "1.70.2" 156source = "registry+https://github.com/rust-lang/crates.io-index" 157checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 158 159[[package]] 160name = "libc" 161version = "0.2.177" 162source = "registry+https://github.com/rust-lang/crates.io-index" 163checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" 164 165[[package]] 166name = "once_cell_polyfill" 167version = "1.70.2" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 170 171[[package]] 172name = "ppv-lite86" 173version = "0.2.21" 174source = "registry+https://github.com/rust-lang/crates.io-index" 175checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 176dependencies = [ 177 "zerocopy", 178] 179 180[[package]] 181name = "proc-macro2" 182version = "1.0.103" 183source = "registry+https://github.com/rust-lang/crates.io-index" 184checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 185dependencies = [ 186 "unicode-ident", 187] 188 189[[package]] 190name = "quote" 191version = "1.0.42" 192source = "registry+https://github.com/rust-lang/crates.io-index" 193checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 194dependencies = [ 195 "proc-macro2", 196] 197 198[[package]] 199name = "r-efi" 200version = "5.3.0" 201source = "registry+https://github.com/rust-lang/crates.io-index" 202checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 203 204[[package]] 205name = "rand" 206version = "0.9.2" 207source = "registry+https://github.com/rust-lang/crates.io-index" 208checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 209dependencies = [ 210 "rand_chacha", 211 "rand_core", 212] 213 214[[package]] 215name = "rand_chacha" 216version = "0.9.0" 217source = "registry+https://github.com/rust-lang/crates.io-index" 218checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 219dependencies = [ 220 "ppv-lite86", 221 "rand_core", 222] 223 224[[package]] 225name = "rand_core" 226version = "0.9.3" 227source = "registry+https://github.com/rust-lang/crates.io-index" 228checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 229dependencies = [ 230 "getrandom", 231] 232 233[[package]] 234name = "secret-santa" 235version = "0.1.0" 236dependencies = [ 237 "base64", 238 "clap", 239 "rand", 240 "serde", 241 "toml", 242] 243 244[[package]] 245name = "serde" 246version = "1.0.228" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 249dependencies = [ 250 "serde_core", 251 "serde_derive", 252] 253 254[[package]] 255name = "serde_core" 256version = "1.0.228" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 259dependencies = [ 260 "serde_derive", 261] 262 263[[package]] 264name = "serde_derive" 265version = "1.0.228" 266source = "registry+https://github.com/rust-lang/crates.io-index" 267checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 268dependencies = [ 269 "proc-macro2", 270 "quote", 271 "syn", 272] 273 274[[package]] 275name = "serde_spanned" 276version = "1.0.3" 277source = "registry+https://github.com/rust-lang/crates.io-index" 278checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392" 279dependencies = [ 280 "serde_core", 281] 282 283[[package]] 284name = "strsim" 285version = "0.11.1" 286source = "registry+https://github.com/rust-lang/crates.io-index" 287checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 288 289[[package]] 290name = "syn" 291version = "2.0.111" 292source = "registry+https://github.com/rust-lang/crates.io-index" 293checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" 294dependencies = [ 295 "proc-macro2", 296 "quote", 297 "unicode-ident", 298] 299 300[[package]] 301name = "toml" 302version = "0.9.8" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8" 305dependencies = [ 306 "indexmap", 307 "serde_core", 308 "serde_spanned", 309 "toml_datetime", 310 "toml_parser", 311 "toml_writer", 312 "winnow", 313] 314 315[[package]] 316name = "toml_datetime" 317version = "0.7.3" 318source = "registry+https://github.com/rust-lang/crates.io-index" 319checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533" 320dependencies = [ 321 "serde_core", 322] 323 324[[package]] 325name = "toml_parser" 326version = "1.0.4" 327source = "registry+https://github.com/rust-lang/crates.io-index" 328checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e" 329dependencies = [ 330 "winnow", 331] 332 333[[package]] 334name = "toml_writer" 335version = "1.0.4" 336source = "registry+https://github.com/rust-lang/crates.io-index" 337checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2" 338 339[[package]] 340name = "unicode-ident" 341version = "1.0.22" 342source = "registry+https://github.com/rust-lang/crates.io-index" 343checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 344 345[[package]] 346name = "utf8parse" 347version = "0.2.2" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 350 351[[package]] 352name = "wasip2" 353version = "1.0.1+wasi-0.2.4" 354source = "registry+https://github.com/rust-lang/crates.io-index" 355checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 356dependencies = [ 357 "wit-bindgen", 358] 359 360[[package]] 361name = "windows-link" 362version = "0.2.1" 363source = "registry+https://github.com/rust-lang/crates.io-index" 364checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 365 366[[package]] 367name = "windows-sys" 368version = "0.61.2" 369source = "registry+https://github.com/rust-lang/crates.io-index" 370checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 371dependencies = [ 372 "windows-link", 373] 374 375[[package]] 376name = "winnow" 377version = "0.7.13" 378source = "registry+https://github.com/rust-lang/crates.io-index" 379checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" 380 381[[package]] 382name = "wit-bindgen" 383version = "0.46.0" 384source = "registry+https://github.com/rust-lang/crates.io-index" 385checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 386 387[[package]] 388name = "zerocopy" 389version = "0.8.28" 390source = "registry+https://github.com/rust-lang/crates.io-index" 391checksum = "43fa6694ed34d6e57407afbccdeecfa268c470a7d2a5b0cf49ce9fcc345afb90" 392dependencies = [ 393 "zerocopy-derive", 394] 395 396[[package]] 397name = "zerocopy-derive" 398version = "0.8.28" 399source = "registry+https://github.com/rust-lang/crates.io-index" 400checksum = "c640b22cd9817fae95be82f0d2f90b11f7605f6c319d16705c459b27ac2cbc26" 401dependencies = [ 402 "proc-macro2", 403 "quote", 404 "syn", 405]