Cargo.lock 226 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 4
  4. [[package]]
  5. name = "adler2"
  6. version = "2.0.1"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
  9. [[package]]
  10. name = "aes"
  11. version = "0.8.4"
  12. source = "registry+https://github.com/rust-lang/crates.io-index"
  13. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  14. dependencies = [
  15. "cfg-if",
  16. "cipher",
  17. "cpufeatures 0.2.17",
  18. ]
  19. [[package]]
  20. name = "ahash"
  21. version = "0.8.12"
  22. source = "registry+https://github.com/rust-lang/crates.io-index"
  23. checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
  24. dependencies = [
  25. "cfg-if",
  26. "const-random",
  27. "getrandom 0.3.4",
  28. "once_cell",
  29. "version_check",
  30. "zerocopy",
  31. ]
  32. [[package]]
  33. name = "aho-corasick"
  34. version = "1.1.5"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
  37. dependencies = [
  38. "memchr",
  39. ]
  40. [[package]]
  41. name = "alloc-no-stdlib"
  42. version = "2.0.4"
  43. source = "registry+https://github.com/rust-lang/crates.io-index"
  44. checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
  45. [[package]]
  46. name = "alloc-stdlib"
  47. version = "0.2.4"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
  50. dependencies = [
  51. "alloc-no-stdlib",
  52. ]
  53. [[package]]
  54. name = "allocator-api2"
  55. version = "0.2.21"
  56. source = "registry+https://github.com/rust-lang/crates.io-index"
  57. checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
  58. [[package]]
  59. name = "android_system_properties"
  60. version = "0.1.6"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
  63. dependencies = [
  64. "libc",
  65. ]
  66. [[package]]
  67. name = "anyhow"
  68. version = "1.0.104"
  69. source = "registry+https://github.com/rust-lang/crates.io-index"
  70. checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
  71. [[package]]
  72. name = "arbitrary"
  73. version = "1.4.2"
  74. source = "registry+https://github.com/rust-lang/crates.io-index"
  75. checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
  76. dependencies = [
  77. "derive_arbitrary",
  78. ]
  79. [[package]]
  80. name = "arc-swap"
  81. version = "1.9.2"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
  84. dependencies = [
  85. "rustversion",
  86. ]
  87. [[package]]
  88. name = "arrayref"
  89. version = "0.3.9"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
  92. [[package]]
  93. name = "arrayvec"
  94. version = "0.7.8"
  95. source = "registry+https://github.com/rust-lang/crates.io-index"
  96. checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
  97. [[package]]
  98. name = "arrow"
  99. version = "57.3.1"
  100. source = "registry+https://github.com/rust-lang/crates.io-index"
  101. checksum = "3bd47f2a6ddc39244bd722a27ee5da66c03369d087b9e024eafdb03e98b98ea7"
  102. dependencies = [
  103. "arrow-arith",
  104. "arrow-array",
  105. "arrow-buffer",
  106. "arrow-cast",
  107. "arrow-csv",
  108. "arrow-data",
  109. "arrow-ipc",
  110. "arrow-json",
  111. "arrow-ord",
  112. "arrow-row",
  113. "arrow-schema",
  114. "arrow-select",
  115. "arrow-string",
  116. ]
  117. [[package]]
  118. name = "arrow-arith"
  119. version = "57.3.1"
  120. source = "registry+https://github.com/rust-lang/crates.io-index"
  121. checksum = "7c7bbd679c5418b8639b92be01f361d60013c4906574b578b77b63c78356594c"
  122. dependencies = [
  123. "arrow-array",
  124. "arrow-buffer",
  125. "arrow-data",
  126. "arrow-schema",
  127. "chrono",
  128. "num-traits",
  129. ]
  130. [[package]]
  131. name = "arrow-array"
  132. version = "57.3.1"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "c8a4ab47b3f3eac60f7fd31b81e9028fda018607bcc63451aca4f2b755269862"
  135. dependencies = [
  136. "ahash",
  137. "arrow-buffer",
  138. "arrow-data",
  139. "arrow-schema",
  140. "chrono",
  141. "chrono-tz",
  142. "half",
  143. "hashbrown 0.16.1",
  144. "num-complex",
  145. "num-integer",
  146. "num-traits",
  147. ]
  148. [[package]]
  149. name = "arrow-buffer"
  150. version = "57.3.1"
  151. source = "registry+https://github.com/rust-lang/crates.io-index"
  152. checksum = "0d18b89b4c4f4811d0858175e79541fe98e33e18db3b011708bc287b1240593f"
  153. dependencies = [
  154. "bytes",
  155. "half",
  156. "num-bigint",
  157. "num-traits",
  158. ]
  159. [[package]]
  160. name = "arrow-cast"
  161. version = "57.3.1"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "722b5c41dd1d14d0a879a1bce92c6fe33f546101bb2acce57a209825edd075b3"
  164. dependencies = [
  165. "arrow-array",
  166. "arrow-buffer",
  167. "arrow-data",
  168. "arrow-ord",
  169. "arrow-schema",
  170. "arrow-select",
  171. "atoi",
  172. "base64 0.22.1",
  173. "chrono",
  174. "comfy-table",
  175. "half",
  176. "lexical-core",
  177. "num-traits",
  178. "ryu",
  179. ]
  180. [[package]]
  181. name = "arrow-csv"
  182. version = "57.3.1"
  183. source = "registry+https://github.com/rust-lang/crates.io-index"
  184. checksum = "27ddb80a4848e03b1655af496d5ac2563a779e5742fcb48f2ca2e089c9cd2197"
  185. dependencies = [
  186. "arrow-array",
  187. "arrow-cast",
  188. "arrow-schema",
  189. "chrono",
  190. "csv",
  191. "csv-core",
  192. "regex",
  193. ]
  194. [[package]]
  195. name = "arrow-data"
  196. version = "57.3.1"
  197. source = "registry+https://github.com/rust-lang/crates.io-index"
  198. checksum = "c1683705c63dcf0d18972759eda48489028cbbff67af7d6bef2c6b7b74ab778a"
  199. dependencies = [
  200. "arrow-buffer",
  201. "arrow-schema",
  202. "half",
  203. "num-integer",
  204. "num-traits",
  205. ]
  206. [[package]]
  207. name = "arrow-ipc"
  208. version = "57.3.1"
  209. source = "registry+https://github.com/rust-lang/crates.io-index"
  210. checksum = "8cf72d04c07229fbf4dbebe7145cac37d7cf7ec582fe705c6b92cb314af096ab"
  211. dependencies = [
  212. "arrow-array",
  213. "arrow-buffer",
  214. "arrow-data",
  215. "arrow-schema",
  216. "arrow-select",
  217. "flatbuffers",
  218. "lz4_flex 0.12.2",
  219. "zstd",
  220. ]
  221. [[package]]
  222. name = "arrow-json"
  223. version = "57.3.1"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "a84a905f41fedfcd7679813c89a61dc369c0f932b27aa8dcc6aa051cc781a97d"
  226. dependencies = [
  227. "arrow-array",
  228. "arrow-buffer",
  229. "arrow-cast",
  230. "arrow-data",
  231. "arrow-schema",
  232. "chrono",
  233. "half",
  234. "indexmap 2.14.0",
  235. "itoa",
  236. "lexical-core",
  237. "memchr",
  238. "num-traits",
  239. "ryu",
  240. "serde_core",
  241. "serde_json",
  242. "simdutf8",
  243. ]
  244. [[package]]
  245. name = "arrow-ord"
  246. version = "57.3.1"
  247. source = "registry+https://github.com/rust-lang/crates.io-index"
  248. checksum = "082342947d4e5a2bcccf029a0a0397e21cb3bb8421edd9571d34fb5dd2670256"
  249. dependencies = [
  250. "arrow-array",
  251. "arrow-buffer",
  252. "arrow-data",
  253. "arrow-schema",
  254. "arrow-select",
  255. ]
  256. [[package]]
  257. name = "arrow-row"
  258. version = "57.3.1"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "e3a931b520a2a5e22033e01a6f2486b4cdc26f9106b759abeebc320f125e94d7"
  261. dependencies = [
  262. "arrow-array",
  263. "arrow-buffer",
  264. "arrow-data",
  265. "arrow-schema",
  266. "half",
  267. ]
  268. [[package]]
  269. name = "arrow-schema"
  270. version = "57.3.1"
  271. source = "registry+https://github.com/rust-lang/crates.io-index"
  272. checksum = "e4cf0d4a6609679e03002167a61074a21d7b1ad9ea65e462b2c0a97f8a3b2bc6"
  273. dependencies = [
  274. "bitflags 2.13.1",
  275. "serde_core",
  276. "serde_json",
  277. ]
  278. [[package]]
  279. name = "arrow-select"
  280. version = "57.3.1"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "0b320d86a9806923663bb0fd9baa65ecaba81cb0cd77ff8c1768b9716b4ef891"
  283. dependencies = [
  284. "ahash",
  285. "arrow-array",
  286. "arrow-buffer",
  287. "arrow-data",
  288. "arrow-schema",
  289. "num-traits",
  290. ]
  291. [[package]]
  292. name = "arrow-string"
  293. version = "57.3.1"
  294. source = "registry+https://github.com/rust-lang/crates.io-index"
  295. checksum = "b493e99162e5764077e7823e50ba284858d365922631c7aaefe9487b1abd02c2"
  296. dependencies = [
  297. "arrow-array",
  298. "arrow-buffer",
  299. "arrow-data",
  300. "arrow-schema",
  301. "arrow-select",
  302. "memchr",
  303. "num-traits",
  304. "regex",
  305. "regex-syntax",
  306. ]
  307. [[package]]
  308. name = "async-broadcast"
  309. version = "0.7.2"
  310. source = "registry+https://github.com/rust-lang/crates.io-index"
  311. checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
  312. dependencies = [
  313. "event-listener",
  314. "event-listener-strategy",
  315. "futures-core",
  316. "pin-project-lite",
  317. ]
  318. [[package]]
  319. name = "async-channel"
  320. version = "2.5.0"
  321. source = "registry+https://github.com/rust-lang/crates.io-index"
  322. checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
  323. dependencies = [
  324. "concurrent-queue",
  325. "event-listener-strategy",
  326. "futures-core",
  327. "pin-project-lite",
  328. ]
  329. [[package]]
  330. name = "async-compression"
  331. version = "0.4.43"
  332. source = "registry+https://github.com/rust-lang/crates.io-index"
  333. checksum = "3976abdc8fe7d1133d43d304afd42abdf5bc3e1319d263d223bde07b5efc4be8"
  334. dependencies = [
  335. "compression-codecs",
  336. "compression-core",
  337. "pin-project-lite",
  338. "tokio",
  339. ]
  340. [[package]]
  341. name = "async-executor"
  342. version = "1.14.0"
  343. source = "registry+https://github.com/rust-lang/crates.io-index"
  344. checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
  345. dependencies = [
  346. "async-task",
  347. "concurrent-queue",
  348. "fastrand",
  349. "futures-lite",
  350. "pin-project-lite",
  351. "slab",
  352. ]
  353. [[package]]
  354. name = "async-io"
  355. version = "2.6.0"
  356. source = "registry+https://github.com/rust-lang/crates.io-index"
  357. checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
  358. dependencies = [
  359. "autocfg",
  360. "cfg-if",
  361. "concurrent-queue",
  362. "futures-io",
  363. "futures-lite",
  364. "parking",
  365. "polling",
  366. "rustix 1.1.4",
  367. "slab",
  368. "windows-sys 0.61.2",
  369. ]
  370. [[package]]
  371. name = "async-lock"
  372. version = "3.4.2"
  373. source = "registry+https://github.com/rust-lang/crates.io-index"
  374. checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
  375. dependencies = [
  376. "event-listener",
  377. "event-listener-strategy",
  378. "pin-project-lite",
  379. ]
  380. [[package]]
  381. name = "async-process"
  382. version = "2.5.0"
  383. source = "registry+https://github.com/rust-lang/crates.io-index"
  384. checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
  385. dependencies = [
  386. "async-channel",
  387. "async-io",
  388. "async-lock",
  389. "async-signal",
  390. "async-task",
  391. "blocking",
  392. "cfg-if",
  393. "event-listener",
  394. "futures-lite",
  395. "rustix 1.1.4",
  396. ]
  397. [[package]]
  398. name = "async-recursion"
  399. version = "1.1.1"
  400. source = "registry+https://github.com/rust-lang/crates.io-index"
  401. checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
  402. dependencies = [
  403. "proc-macro2",
  404. "quote",
  405. "syn 2.0.119",
  406. ]
  407. [[package]]
  408. name = "async-signal"
  409. version = "0.2.14"
  410. source = "registry+https://github.com/rust-lang/crates.io-index"
  411. checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485"
  412. dependencies = [
  413. "async-io",
  414. "async-lock",
  415. "atomic-waker",
  416. "cfg-if",
  417. "futures-core",
  418. "futures-io",
  419. "rustix 1.1.4",
  420. "signal-hook-registry",
  421. "slab",
  422. "windows-sys 0.61.2",
  423. ]
  424. [[package]]
  425. name = "async-task"
  426. version = "4.7.1"
  427. source = "registry+https://github.com/rust-lang/crates.io-index"
  428. checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
  429. [[package]]
  430. name = "async-trait"
  431. version = "0.1.92"
  432. source = "registry+https://github.com/rust-lang/crates.io-index"
  433. checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
  434. dependencies = [
  435. "proc-macro2",
  436. "quote",
  437. "syn 3.0.3",
  438. ]
  439. [[package]]
  440. name = "async_cell"
  441. version = "0.2.3"
  442. source = "registry+https://github.com/rust-lang/crates.io-index"
  443. checksum = "447ab28afbb345f5408b120702a44e5529ebf90b1796ec76e9528df8e288e6c2"
  444. dependencies = [
  445. "loom",
  446. ]
  447. [[package]]
  448. name = "atk"
  449. version = "0.18.2"
  450. source = "registry+https://github.com/rust-lang/crates.io-index"
  451. checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b"
  452. dependencies = [
  453. "atk-sys",
  454. "glib",
  455. "libc",
  456. ]
  457. [[package]]
  458. name = "atk-sys"
  459. version = "0.18.2"
  460. source = "registry+https://github.com/rust-lang/crates.io-index"
  461. checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086"
  462. dependencies = [
  463. "glib-sys",
  464. "gobject-sys",
  465. "libc",
  466. "system-deps",
  467. ]
  468. [[package]]
  469. name = "atoi"
  470. version = "2.0.0"
  471. source = "registry+https://github.com/rust-lang/crates.io-index"
  472. checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
  473. dependencies = [
  474. "num-traits",
  475. ]
  476. [[package]]
  477. name = "atoi_simd"
  478. version = "0.17.0"
  479. source = "registry+https://github.com/rust-lang/crates.io-index"
  480. checksum = "8ad17c7c205c2c28b527b9845eeb91cf1b4d008b438f98ce0e628227a822758e"
  481. dependencies = [
  482. "debug_unsafe",
  483. ]
  484. [[package]]
  485. name = "atomic-waker"
  486. version = "1.1.2"
  487. source = "registry+https://github.com/rust-lang/crates.io-index"
  488. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  489. [[package]]
  490. name = "autocfg"
  491. version = "1.5.1"
  492. source = "registry+https://github.com/rust-lang/crates.io-index"
  493. checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
  494. [[package]]
  495. name = "base64"
  496. version = "0.21.7"
  497. source = "registry+https://github.com/rust-lang/crates.io-index"
  498. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  499. [[package]]
  500. name = "base64"
  501. version = "0.22.1"
  502. source = "registry+https://github.com/rust-lang/crates.io-index"
  503. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  504. [[package]]
  505. name = "bigdecimal"
  506. version = "0.4.10"
  507. source = "registry+https://github.com/rust-lang/crates.io-index"
  508. checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
  509. dependencies = [
  510. "autocfg",
  511. "libm",
  512. "num-bigint",
  513. "num-integer",
  514. "num-traits",
  515. ]
  516. [[package]]
  517. name = "bit-set"
  518. version = "0.8.0"
  519. source = "registry+https://github.com/rust-lang/crates.io-index"
  520. checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
  521. dependencies = [
  522. "bit-vec",
  523. ]
  524. [[package]]
  525. name = "bit-vec"
  526. version = "0.8.0"
  527. source = "registry+https://github.com/rust-lang/crates.io-index"
  528. checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
  529. [[package]]
  530. name = "bitflags"
  531. version = "1.3.2"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  534. [[package]]
  535. name = "bitflags"
  536. version = "2.13.1"
  537. source = "registry+https://github.com/rust-lang/crates.io-index"
  538. checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
  539. dependencies = [
  540. "serde_core",
  541. ]
  542. [[package]]
  543. name = "bitpacking"
  544. version = "0.9.3"
  545. source = "registry+https://github.com/rust-lang/crates.io-index"
  546. checksum = "96a7139abd3d9cebf8cd6f920a389cf3dc9576172e32f4563f188cae3c3eb019"
  547. dependencies = [
  548. "crunchy",
  549. ]
  550. [[package]]
  551. name = "bitvec"
  552. version = "1.1.1"
  553. source = "registry+https://github.com/rust-lang/crates.io-index"
  554. checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
  555. dependencies = [
  556. "funty",
  557. "radium",
  558. "tap",
  559. "wyz",
  560. ]
  561. [[package]]
  562. name = "blake2"
  563. version = "0.10.6"
  564. source = "registry+https://github.com/rust-lang/crates.io-index"
  565. checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
  566. dependencies = [
  567. "digest",
  568. ]
  569. [[package]]
  570. name = "blake3"
  571. version = "1.8.6"
  572. source = "registry+https://github.com/rust-lang/crates.io-index"
  573. checksum = "76ae7bad254120e9e4c63bafc385310756f90c484eac0e36b8317cf09cb92a77"
  574. dependencies = [
  575. "arrayref",
  576. "arrayvec",
  577. "cc",
  578. "cfg-if",
  579. "constant_time_eq 0.4.2",
  580. "cpufeatures 0.3.0",
  581. ]
  582. [[package]]
  583. name = "block-buffer"
  584. version = "0.10.4"
  585. source = "registry+https://github.com/rust-lang/crates.io-index"
  586. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  587. dependencies = [
  588. "generic-array",
  589. ]
  590. [[package]]
  591. name = "block2"
  592. version = "0.6.2"
  593. source = "registry+https://github.com/rust-lang/crates.io-index"
  594. checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
  595. dependencies = [
  596. "objc2",
  597. ]
  598. [[package]]
  599. name = "blocking"
  600. version = "1.6.2"
  601. source = "registry+https://github.com/rust-lang/crates.io-index"
  602. checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
  603. dependencies = [
  604. "async-channel",
  605. "async-task",
  606. "futures-io",
  607. "futures-lite",
  608. "piper",
  609. ]
  610. [[package]]
  611. name = "bon"
  612. version = "3.9.3"
  613. source = "registry+https://github.com/rust-lang/crates.io-index"
  614. checksum = "a602c73c7b0148ec6d12af6fd5cc7a46e2eacc8878271a999abac56eed12f561"
  615. dependencies = [
  616. "bon-macros",
  617. "rustversion",
  618. ]
  619. [[package]]
  620. name = "bon-macros"
  621. version = "3.9.3"
  622. source = "registry+https://github.com/rust-lang/crates.io-index"
  623. checksum = "6dee98b0db6a962de883bf5d20362dee4d7ca0d12fe39a7c6c73c844e1cd7c1f"
  624. dependencies = [
  625. "darling 0.20.11",
  626. "ident_case",
  627. "prettyplease",
  628. "proc-macro2",
  629. "quote",
  630. "rustversion",
  631. "syn 2.0.119",
  632. ]
  633. [[package]]
  634. name = "brotli"
  635. version = "8.0.4"
  636. source = "registry+https://github.com/rust-lang/crates.io-index"
  637. checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
  638. dependencies = [
  639. "alloc-no-stdlib",
  640. "alloc-stdlib",
  641. "brotli-decompressor",
  642. ]
  643. [[package]]
  644. name = "brotli-decompressor"
  645. version = "5.0.3"
  646. source = "registry+https://github.com/rust-lang/crates.io-index"
  647. checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
  648. dependencies = [
  649. "alloc-no-stdlib",
  650. "alloc-stdlib",
  651. ]
  652. [[package]]
  653. name = "bs58"
  654. version = "0.5.1"
  655. source = "registry+https://github.com/rust-lang/crates.io-index"
  656. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  657. dependencies = [
  658. "tinyvec",
  659. ]
  660. [[package]]
  661. name = "bumpalo"
  662. version = "3.20.3"
  663. source = "registry+https://github.com/rust-lang/crates.io-index"
  664. checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
  665. [[package]]
  666. name = "bytemuck"
  667. version = "1.25.2"
  668. source = "registry+https://github.com/rust-lang/crates.io-index"
  669. checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
  670. [[package]]
  671. name = "byteorder"
  672. version = "1.5.0"
  673. source = "registry+https://github.com/rust-lang/crates.io-index"
  674. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  675. [[package]]
  676. name = "byteorder-lite"
  677. version = "0.1.0"
  678. source = "registry+https://github.com/rust-lang/crates.io-index"
  679. checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
  680. [[package]]
  681. name = "bytes"
  682. version = "1.12.1"
  683. source = "registry+https://github.com/rust-lang/crates.io-index"
  684. checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
  685. dependencies = [
  686. "serde",
  687. ]
  688. [[package]]
  689. name = "bzip2"
  690. version = "0.5.2"
  691. source = "registry+https://github.com/rust-lang/crates.io-index"
  692. checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
  693. dependencies = [
  694. "bzip2-sys",
  695. ]
  696. [[package]]
  697. name = "bzip2-sys"
  698. version = "0.1.13+1.0.8"
  699. source = "registry+https://github.com/rust-lang/crates.io-index"
  700. checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
  701. dependencies = [
  702. "cc",
  703. "pkg-config",
  704. ]
  705. [[package]]
  706. name = "cairo-rs"
  707. version = "0.18.5"
  708. source = "registry+https://github.com/rust-lang/crates.io-index"
  709. checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
  710. dependencies = [
  711. "bitflags 2.13.1",
  712. "cairo-sys-rs",
  713. "glib",
  714. "libc",
  715. "once_cell",
  716. "thiserror 1.0.69",
  717. ]
  718. [[package]]
  719. name = "cairo-sys-rs"
  720. version = "0.18.2"
  721. source = "registry+https://github.com/rust-lang/crates.io-index"
  722. checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
  723. dependencies = [
  724. "glib-sys",
  725. "libc",
  726. "system-deps",
  727. ]
  728. [[package]]
  729. name = "calamine"
  730. version = "0.34.0"
  731. source = "registry+https://github.com/rust-lang/crates.io-index"
  732. checksum = "20ae05a4e39297eecf9a994210d27501318c37a9318201f8e11050add82bb6f0"
  733. dependencies = [
  734. "atoi_simd",
  735. "byteorder",
  736. "codepage",
  737. "encoding_rs",
  738. "fast-float2",
  739. "log",
  740. "quick-xml 0.39.4",
  741. "serde",
  742. "zip 7.2.0",
  743. ]
  744. [[package]]
  745. name = "camino"
  746. version = "1.2.5"
  747. source = "registry+https://github.com/rust-lang/crates.io-index"
  748. checksum = "bb1307f12aa967b5a58416e87b3653360e0fd614a016b6e970db08fecbb1b80d"
  749. dependencies = [
  750. "serde_core",
  751. ]
  752. [[package]]
  753. name = "cargo-platform"
  754. version = "0.1.9"
  755. source = "registry+https://github.com/rust-lang/crates.io-index"
  756. checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
  757. dependencies = [
  758. "serde",
  759. ]
  760. [[package]]
  761. name = "cargo_metadata"
  762. version = "0.19.2"
  763. source = "registry+https://github.com/rust-lang/crates.io-index"
  764. checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
  765. dependencies = [
  766. "camino",
  767. "cargo-platform",
  768. "semver",
  769. "serde",
  770. "serde_json",
  771. "thiserror 2.0.20",
  772. ]
  773. [[package]]
  774. name = "cargo_toml"
  775. version = "0.22.3"
  776. source = "registry+https://github.com/rust-lang/crates.io-index"
  777. checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77"
  778. dependencies = [
  779. "serde",
  780. "toml 0.9.12+spec-1.1.0",
  781. ]
  782. [[package]]
  783. name = "cc"
  784. version = "1.4.3"
  785. source = "registry+https://github.com/rust-lang/crates.io-index"
  786. checksum = "509591b7bcd67f4ef775afad7662703b4935daaa6ec0e5605cfb1090b32a2b6d"
  787. dependencies = [
  788. "find-msvc-tools",
  789. "jobserver",
  790. "libc",
  791. "shlex",
  792. ]
  793. [[package]]
  794. name = "census"
  795. version = "0.4.2"
  796. source = "registry+https://github.com/rust-lang/crates.io-index"
  797. checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
  798. [[package]]
  799. name = "cesu8"
  800. version = "1.1.0"
  801. source = "registry+https://github.com/rust-lang/crates.io-index"
  802. checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
  803. [[package]]
  804. name = "cfb"
  805. version = "0.7.3"
  806. source = "registry+https://github.com/rust-lang/crates.io-index"
  807. checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
  808. dependencies = [
  809. "byteorder",
  810. "fnv",
  811. "uuid",
  812. ]
  813. [[package]]
  814. name = "cfg-expr"
  815. version = "0.15.8"
  816. source = "registry+https://github.com/rust-lang/crates.io-index"
  817. checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
  818. dependencies = [
  819. "smallvec",
  820. "target-lexicon",
  821. ]
  822. [[package]]
  823. name = "cfg-if"
  824. version = "1.0.4"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
  827. [[package]]
  828. name = "cfg_aliases"
  829. version = "0.2.2"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
  832. [[package]]
  833. name = "chacha20"
  834. version = "0.10.1"
  835. source = "registry+https://github.com/rust-lang/crates.io-index"
  836. checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
  837. dependencies = [
  838. "cfg-if",
  839. "cpufeatures 0.3.0",
  840. "rand_core 0.10.1",
  841. ]
  842. [[package]]
  843. name = "chrono"
  844. version = "0.4.45"
  845. source = "registry+https://github.com/rust-lang/crates.io-index"
  846. checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
  847. dependencies = [
  848. "iana-time-zone",
  849. "js-sys",
  850. "num-traits",
  851. "serde",
  852. "wasm-bindgen",
  853. "windows-link 0.2.1",
  854. ]
  855. [[package]]
  856. name = "chrono-tz"
  857. version = "0.10.4"
  858. source = "registry+https://github.com/rust-lang/crates.io-index"
  859. checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
  860. dependencies = [
  861. "chrono",
  862. "phf 0.12.1",
  863. ]
  864. [[package]]
  865. name = "cipher"
  866. version = "0.4.4"
  867. source = "registry+https://github.com/rust-lang/crates.io-index"
  868. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  869. dependencies = [
  870. "crypto-common",
  871. "inout",
  872. ]
  873. [[package]]
  874. name = "codepage"
  875. version = "0.1.2"
  876. source = "registry+https://github.com/rust-lang/crates.io-index"
  877. checksum = "48f68d061bc2828ae826206326e61251aca94c1e4a5305cf52d9138639c918b4"
  878. dependencies = [
  879. "encoding_rs",
  880. ]
  881. [[package]]
  882. name = "color_quant"
  883. version = "1.1.0"
  884. source = "registry+https://github.com/rust-lang/crates.io-index"
  885. checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
  886. [[package]]
  887. name = "combine"
  888. version = "4.6.7"
  889. source = "registry+https://github.com/rust-lang/crates.io-index"
  890. checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
  891. dependencies = [
  892. "bytes",
  893. "memchr",
  894. ]
  895. [[package]]
  896. name = "comfy-table"
  897. version = "7.2.2"
  898. source = "registry+https://github.com/rust-lang/crates.io-index"
  899. checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
  900. dependencies = [
  901. "unicode-segmentation",
  902. "unicode-width",
  903. ]
  904. [[package]]
  905. name = "compression-codecs"
  906. version = "0.4.38"
  907. source = "registry+https://github.com/rust-lang/crates.io-index"
  908. checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
  909. dependencies = [
  910. "compression-core",
  911. "flate2",
  912. "memchr",
  913. ]
  914. [[package]]
  915. name = "compression-core"
  916. version = "0.4.32"
  917. source = "registry+https://github.com/rust-lang/crates.io-index"
  918. checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
  919. [[package]]
  920. name = "concurrent-queue"
  921. version = "2.5.0"
  922. source = "registry+https://github.com/rust-lang/crates.io-index"
  923. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  924. dependencies = [
  925. "crossbeam-utils",
  926. ]
  927. [[package]]
  928. name = "const-random"
  929. version = "0.1.18"
  930. source = "registry+https://github.com/rust-lang/crates.io-index"
  931. checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
  932. dependencies = [
  933. "const-random-macro",
  934. ]
  935. [[package]]
  936. name = "const-random-macro"
  937. version = "0.1.16"
  938. source = "registry+https://github.com/rust-lang/crates.io-index"
  939. checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
  940. dependencies = [
  941. "getrandom 0.2.17",
  942. "once_cell",
  943. "tiny-keccak",
  944. ]
  945. [[package]]
  946. name = "constant_time_eq"
  947. version = "0.3.1"
  948. source = "registry+https://github.com/rust-lang/crates.io-index"
  949. checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
  950. [[package]]
  951. name = "constant_time_eq"
  952. version = "0.4.2"
  953. source = "registry+https://github.com/rust-lang/crates.io-index"
  954. checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
  955. [[package]]
  956. name = "cookie"
  957. version = "0.18.2"
  958. source = "registry+https://github.com/rust-lang/crates.io-index"
  959. checksum = "1a373e3602691c3cdea496d2f0ee5935151e6168fe87739483c463db1b2f2f87"
  960. dependencies = [
  961. "percent-encoding",
  962. "time",
  963. "version_check",
  964. ]
  965. [[package]]
  966. name = "cookie_store"
  967. version = "0.22.1"
  968. source = "registry+https://github.com/rust-lang/crates.io-index"
  969. checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
  970. dependencies = [
  971. "cookie",
  972. "document-features",
  973. "idna",
  974. "log",
  975. "publicsuffix",
  976. "serde",
  977. "serde_derive",
  978. "serde_json",
  979. "time",
  980. "url",
  981. ]
  982. [[package]]
  983. name = "core-foundation"
  984. version = "0.9.4"
  985. source = "registry+https://github.com/rust-lang/crates.io-index"
  986. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  987. dependencies = [
  988. "core-foundation-sys",
  989. "libc",
  990. ]
  991. [[package]]
  992. name = "core-foundation"
  993. version = "0.10.1"
  994. source = "registry+https://github.com/rust-lang/crates.io-index"
  995. checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
  996. dependencies = [
  997. "core-foundation-sys",
  998. "libc",
  999. ]
  1000. [[package]]
  1001. name = "core-foundation-sys"
  1002. version = "0.8.7"
  1003. source = "registry+https://github.com/rust-lang/crates.io-index"
  1004. checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
  1005. [[package]]
  1006. name = "core-graphics"
  1007. version = "0.25.0"
  1008. source = "registry+https://github.com/rust-lang/crates.io-index"
  1009. checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97"
  1010. dependencies = [
  1011. "bitflags 2.13.1",
  1012. "core-foundation 0.10.1",
  1013. "core-graphics-types",
  1014. "foreign-types",
  1015. "libc",
  1016. ]
  1017. [[package]]
  1018. name = "core-graphics-types"
  1019. version = "0.2.0"
  1020. source = "registry+https://github.com/rust-lang/crates.io-index"
  1021. checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
  1022. dependencies = [
  1023. "bitflags 2.13.1",
  1024. "core-foundation 0.10.1",
  1025. "libc",
  1026. ]
  1027. [[package]]
  1028. name = "cpufeatures"
  1029. version = "0.2.17"
  1030. source = "registry+https://github.com/rust-lang/crates.io-index"
  1031. checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
  1032. dependencies = [
  1033. "libc",
  1034. ]
  1035. [[package]]
  1036. name = "cpufeatures"
  1037. version = "0.3.0"
  1038. source = "registry+https://github.com/rust-lang/crates.io-index"
  1039. checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
  1040. dependencies = [
  1041. "libc",
  1042. ]
  1043. [[package]]
  1044. name = "crc"
  1045. version = "3.4.0"
  1046. source = "registry+https://github.com/rust-lang/crates.io-index"
  1047. checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
  1048. dependencies = [
  1049. "crc-catalog",
  1050. ]
  1051. [[package]]
  1052. name = "crc-catalog"
  1053. version = "2.5.0"
  1054. source = "registry+https://github.com/rust-lang/crates.io-index"
  1055. checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
  1056. [[package]]
  1057. name = "crc32fast"
  1058. version = "1.5.0"
  1059. source = "registry+https://github.com/rust-lang/crates.io-index"
  1060. checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
  1061. dependencies = [
  1062. "cfg-if",
  1063. ]
  1064. [[package]]
  1065. name = "crossbeam-channel"
  1066. version = "0.5.16"
  1067. source = "registry+https://github.com/rust-lang/crates.io-index"
  1068. checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
  1069. dependencies = [
  1070. "crossbeam-utils",
  1071. ]
  1072. [[package]]
  1073. name = "crossbeam-deque"
  1074. version = "0.8.7"
  1075. source = "registry+https://github.com/rust-lang/crates.io-index"
  1076. checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
  1077. dependencies = [
  1078. "crossbeam-epoch",
  1079. "crossbeam-utils",
  1080. ]
  1081. [[package]]
  1082. name = "crossbeam-epoch"
  1083. version = "0.9.20"
  1084. source = "registry+https://github.com/rust-lang/crates.io-index"
  1085. checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
  1086. dependencies = [
  1087. "crossbeam-utils",
  1088. ]
  1089. [[package]]
  1090. name = "crossbeam-queue"
  1091. version = "0.3.13"
  1092. source = "registry+https://github.com/rust-lang/crates.io-index"
  1093. checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
  1094. dependencies = [
  1095. "crossbeam-utils",
  1096. ]
  1097. [[package]]
  1098. name = "crossbeam-skiplist"
  1099. version = "0.1.3"
  1100. source = "registry+https://github.com/rust-lang/crates.io-index"
  1101. checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
  1102. dependencies = [
  1103. "crossbeam-epoch",
  1104. "crossbeam-utils",
  1105. ]
  1106. [[package]]
  1107. name = "crossbeam-utils"
  1108. version = "0.8.22"
  1109. source = "registry+https://github.com/rust-lang/crates.io-index"
  1110. checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
  1111. [[package]]
  1112. name = "crunchy"
  1113. version = "0.2.4"
  1114. source = "registry+https://github.com/rust-lang/crates.io-index"
  1115. checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
  1116. [[package]]
  1117. name = "crypto-common"
  1118. version = "0.1.7"
  1119. source = "registry+https://github.com/rust-lang/crates.io-index"
  1120. checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
  1121. dependencies = [
  1122. "generic-array",
  1123. "typenum",
  1124. ]
  1125. [[package]]
  1126. name = "cssparser"
  1127. version = "0.36.0"
  1128. source = "registry+https://github.com/rust-lang/crates.io-index"
  1129. checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2"
  1130. dependencies = [
  1131. "cssparser-macros",
  1132. "dtoa-short",
  1133. "itoa",
  1134. "phf 0.13.1",
  1135. "smallvec",
  1136. ]
  1137. [[package]]
  1138. name = "cssparser-macros"
  1139. version = "0.6.1"
  1140. source = "registry+https://github.com/rust-lang/crates.io-index"
  1141. checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
  1142. dependencies = [
  1143. "quote",
  1144. "syn 2.0.119",
  1145. ]
  1146. [[package]]
  1147. name = "csv"
  1148. version = "1.4.0"
  1149. source = "registry+https://github.com/rust-lang/crates.io-index"
  1150. checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
  1151. dependencies = [
  1152. "csv-core",
  1153. "itoa",
  1154. "ryu",
  1155. "serde_core",
  1156. ]
  1157. [[package]]
  1158. name = "csv-core"
  1159. version = "0.1.13"
  1160. source = "registry+https://github.com/rust-lang/crates.io-index"
  1161. checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
  1162. dependencies = [
  1163. "memchr",
  1164. ]
  1165. [[package]]
  1166. name = "ctor"
  1167. version = "0.8.0"
  1168. source = "registry+https://github.com/rust-lang/crates.io-index"
  1169. checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
  1170. dependencies = [
  1171. "ctor-proc-macro",
  1172. "dtor",
  1173. ]
  1174. [[package]]
  1175. name = "ctor-proc-macro"
  1176. version = "0.0.7"
  1177. source = "registry+https://github.com/rust-lang/crates.io-index"
  1178. checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
  1179. [[package]]
  1180. name = "darling"
  1181. version = "0.20.11"
  1182. source = "registry+https://github.com/rust-lang/crates.io-index"
  1183. checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
  1184. dependencies = [
  1185. "darling_core 0.20.11",
  1186. "darling_macro 0.20.11",
  1187. ]
  1188. [[package]]
  1189. name = "darling"
  1190. version = "0.23.0"
  1191. source = "registry+https://github.com/rust-lang/crates.io-index"
  1192. checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
  1193. dependencies = [
  1194. "darling_core 0.23.0",
  1195. "darling_macro 0.23.0",
  1196. ]
  1197. [[package]]
  1198. name = "darling_core"
  1199. version = "0.20.11"
  1200. source = "registry+https://github.com/rust-lang/crates.io-index"
  1201. checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
  1202. dependencies = [
  1203. "fnv",
  1204. "ident_case",
  1205. "proc-macro2",
  1206. "quote",
  1207. "strsim",
  1208. "syn 2.0.119",
  1209. ]
  1210. [[package]]
  1211. name = "darling_core"
  1212. version = "0.23.0"
  1213. source = "registry+https://github.com/rust-lang/crates.io-index"
  1214. checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
  1215. dependencies = [
  1216. "ident_case",
  1217. "proc-macro2",
  1218. "quote",
  1219. "strsim",
  1220. "syn 2.0.119",
  1221. ]
  1222. [[package]]
  1223. name = "darling_macro"
  1224. version = "0.20.11"
  1225. source = "registry+https://github.com/rust-lang/crates.io-index"
  1226. checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
  1227. dependencies = [
  1228. "darling_core 0.20.11",
  1229. "quote",
  1230. "syn 2.0.119",
  1231. ]
  1232. [[package]]
  1233. name = "darling_macro"
  1234. version = "0.23.0"
  1235. source = "registry+https://github.com/rust-lang/crates.io-index"
  1236. checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
  1237. dependencies = [
  1238. "darling_core 0.23.0",
  1239. "quote",
  1240. "syn 2.0.119",
  1241. ]
  1242. [[package]]
  1243. name = "dashmap"
  1244. version = "6.2.1"
  1245. source = "registry+https://github.com/rust-lang/crates.io-index"
  1246. checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
  1247. dependencies = [
  1248. "cfg-if",
  1249. "crossbeam-utils",
  1250. "hashbrown 0.14.5",
  1251. "lock_api",
  1252. "once_cell",
  1253. "parking_lot_core",
  1254. ]
  1255. [[package]]
  1256. name = "data-url"
  1257. version = "0.3.2"
  1258. source = "registry+https://github.com/rust-lang/crates.io-index"
  1259. checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
  1260. [[package]]
  1261. name = "datafusion"
  1262. version = "52.5.0"
  1263. source = "registry+https://github.com/rust-lang/crates.io-index"
  1264. checksum = "7541353e77dc7262b71ca27be07d8393661737e3a73b5d1b1c6f7d814c64fa2a"
  1265. dependencies = [
  1266. "arrow",
  1267. "arrow-schema",
  1268. "async-trait",
  1269. "bytes",
  1270. "chrono",
  1271. "datafusion-catalog",
  1272. "datafusion-catalog-listing",
  1273. "datafusion-common",
  1274. "datafusion-common-runtime",
  1275. "datafusion-datasource",
  1276. "datafusion-datasource-arrow",
  1277. "datafusion-datasource-csv",
  1278. "datafusion-datasource-json",
  1279. "datafusion-execution",
  1280. "datafusion-expr",
  1281. "datafusion-expr-common",
  1282. "datafusion-functions",
  1283. "datafusion-functions-aggregate",
  1284. "datafusion-functions-nested",
  1285. "datafusion-functions-table",
  1286. "datafusion-functions-window",
  1287. "datafusion-optimizer",
  1288. "datafusion-physical-expr",
  1289. "datafusion-physical-expr-adapter",
  1290. "datafusion-physical-expr-common",
  1291. "datafusion-physical-optimizer",
  1292. "datafusion-physical-plan",
  1293. "datafusion-session",
  1294. "datafusion-sql",
  1295. "futures",
  1296. "itertools 0.14.0",
  1297. "log",
  1298. "object_store",
  1299. "parking_lot",
  1300. "rand 0.9.5",
  1301. "regex",
  1302. "sqlparser",
  1303. "tempfile",
  1304. "tokio",
  1305. "url",
  1306. "uuid",
  1307. ]
  1308. [[package]]
  1309. name = "datafusion-catalog"
  1310. version = "52.5.0"
  1311. source = "registry+https://github.com/rust-lang/crates.io-index"
  1312. checksum = "9997731f90fa5398ef831ad0e69600f92c861b79c0d38bd1a29b6f0e3a0ce4c8"
  1313. dependencies = [
  1314. "arrow",
  1315. "async-trait",
  1316. "dashmap",
  1317. "datafusion-common",
  1318. "datafusion-common-runtime",
  1319. "datafusion-datasource",
  1320. "datafusion-execution",
  1321. "datafusion-expr",
  1322. "datafusion-physical-expr",
  1323. "datafusion-physical-plan",
  1324. "datafusion-session",
  1325. "futures",
  1326. "itertools 0.14.0",
  1327. "log",
  1328. "object_store",
  1329. "parking_lot",
  1330. "tokio",
  1331. ]
  1332. [[package]]
  1333. name = "datafusion-catalog-listing"
  1334. version = "52.5.0"
  1335. source = "registry+https://github.com/rust-lang/crates.io-index"
  1336. checksum = "2b30a3dd50dec860c9559275c8d97d9de602e611237a6ecfbda0b3b63b872352"
  1337. dependencies = [
  1338. "arrow",
  1339. "async-trait",
  1340. "datafusion-catalog",
  1341. "datafusion-common",
  1342. "datafusion-datasource",
  1343. "datafusion-execution",
  1344. "datafusion-expr",
  1345. "datafusion-physical-expr",
  1346. "datafusion-physical-expr-adapter",
  1347. "datafusion-physical-expr-common",
  1348. "datafusion-physical-plan",
  1349. "futures",
  1350. "itertools 0.14.0",
  1351. "log",
  1352. "object_store",
  1353. ]
  1354. [[package]]
  1355. name = "datafusion-common"
  1356. version = "52.5.0"
  1357. source = "registry+https://github.com/rust-lang/crates.io-index"
  1358. checksum = "d551054acec0398ca604512310b77ce05c46f66e54b54d48200a686e385cca4e"
  1359. dependencies = [
  1360. "ahash",
  1361. "arrow",
  1362. "arrow-ipc",
  1363. "chrono",
  1364. "half",
  1365. "hashbrown 0.16.1",
  1366. "indexmap 2.14.0",
  1367. "libc",
  1368. "log",
  1369. "object_store",
  1370. "paste",
  1371. "sqlparser",
  1372. "tokio",
  1373. "web-time",
  1374. ]
  1375. [[package]]
  1376. name = "datafusion-common-runtime"
  1377. version = "52.5.0"
  1378. source = "registry+https://github.com/rust-lang/crates.io-index"
  1379. checksum = "567d40e285f5b79f8737b576605721cd6c1133b5d2b00bdbd5d9838d90d0812f"
  1380. dependencies = [
  1381. "futures",
  1382. "log",
  1383. "tokio",
  1384. ]
  1385. [[package]]
  1386. name = "datafusion-datasource"
  1387. version = "52.5.0"
  1388. source = "registry+https://github.com/rust-lang/crates.io-index"
  1389. checksum = "27d2668f51b3b30befae2207472569e37807fdedd1d14da58acc6f8ca6257eae"
  1390. dependencies = [
  1391. "arrow",
  1392. "async-trait",
  1393. "bytes",
  1394. "chrono",
  1395. "datafusion-common",
  1396. "datafusion-common-runtime",
  1397. "datafusion-execution",
  1398. "datafusion-expr",
  1399. "datafusion-physical-expr",
  1400. "datafusion-physical-expr-adapter",
  1401. "datafusion-physical-expr-common",
  1402. "datafusion-physical-plan",
  1403. "datafusion-session",
  1404. "futures",
  1405. "glob",
  1406. "itertools 0.14.0",
  1407. "log",
  1408. "object_store",
  1409. "rand 0.9.5",
  1410. "tokio",
  1411. "url",
  1412. ]
  1413. [[package]]
  1414. name = "datafusion-datasource-arrow"
  1415. version = "52.5.0"
  1416. source = "registry+https://github.com/rust-lang/crates.io-index"
  1417. checksum = "e02e1b3e3a8ec55f1f62de4252b0407c8567363d056078769a197e24fc834a0f"
  1418. dependencies = [
  1419. "arrow",
  1420. "arrow-ipc",
  1421. "async-trait",
  1422. "bytes",
  1423. "datafusion-common",
  1424. "datafusion-common-runtime",
  1425. "datafusion-datasource",
  1426. "datafusion-execution",
  1427. "datafusion-expr",
  1428. "datafusion-physical-expr-common",
  1429. "datafusion-physical-plan",
  1430. "datafusion-session",
  1431. "futures",
  1432. "itertools 0.14.0",
  1433. "object_store",
  1434. "tokio",
  1435. ]
  1436. [[package]]
  1437. name = "datafusion-datasource-csv"
  1438. version = "52.5.0"
  1439. source = "registry+https://github.com/rust-lang/crates.io-index"
  1440. checksum = "b559d7bf87d4f900f847baba8509634f838d9718695389e903604cdcccdb01f3"
  1441. dependencies = [
  1442. "arrow",
  1443. "async-trait",
  1444. "bytes",
  1445. "datafusion-common",
  1446. "datafusion-common-runtime",
  1447. "datafusion-datasource",
  1448. "datafusion-execution",
  1449. "datafusion-expr",
  1450. "datafusion-physical-expr-common",
  1451. "datafusion-physical-plan",
  1452. "datafusion-session",
  1453. "futures",
  1454. "object_store",
  1455. "regex",
  1456. "tokio",
  1457. ]
  1458. [[package]]
  1459. name = "datafusion-datasource-json"
  1460. version = "52.5.0"
  1461. source = "registry+https://github.com/rust-lang/crates.io-index"
  1462. checksum = "250e2d7591ba8b638f063854650faa40bca4e8bd4059b2ece8836f6388d02db4"
  1463. dependencies = [
  1464. "arrow",
  1465. "async-trait",
  1466. "bytes",
  1467. "datafusion-common",
  1468. "datafusion-common-runtime",
  1469. "datafusion-datasource",
  1470. "datafusion-execution",
  1471. "datafusion-expr",
  1472. "datafusion-physical-expr-common",
  1473. "datafusion-physical-plan",
  1474. "datafusion-session",
  1475. "futures",
  1476. "object_store",
  1477. "tokio",
  1478. ]
  1479. [[package]]
  1480. name = "datafusion-doc"
  1481. version = "52.5.0"
  1482. source = "registry+https://github.com/rust-lang/crates.io-index"
  1483. checksum = "b9496cb0db222dbb9a3735760ceca7fc56f35e1d5502c38d0caa77a81e9c1f6a"
  1484. [[package]]
  1485. name = "datafusion-execution"
  1486. version = "52.5.0"
  1487. source = "registry+https://github.com/rust-lang/crates.io-index"
  1488. checksum = "dc45d23c516ed8d3637751e44e09e21b45b3f58b473c802dddd1f1ad4fe435ff"
  1489. dependencies = [
  1490. "arrow",
  1491. "async-trait",
  1492. "chrono",
  1493. "dashmap",
  1494. "datafusion-common",
  1495. "datafusion-expr",
  1496. "futures",
  1497. "log",
  1498. "object_store",
  1499. "parking_lot",
  1500. "rand 0.9.5",
  1501. "tempfile",
  1502. "url",
  1503. ]
  1504. [[package]]
  1505. name = "datafusion-expr"
  1506. version = "52.5.0"
  1507. source = "registry+https://github.com/rust-lang/crates.io-index"
  1508. checksum = "63dd30526d2db4fda6440806a41e4676334a94bc0596cc9cc2a0efed20ef2c44"
  1509. dependencies = [
  1510. "arrow",
  1511. "async-trait",
  1512. "chrono",
  1513. "datafusion-common",
  1514. "datafusion-doc",
  1515. "datafusion-expr-common",
  1516. "datafusion-functions-aggregate-common",
  1517. "datafusion-functions-window-common",
  1518. "datafusion-physical-expr-common",
  1519. "indexmap 2.14.0",
  1520. "itertools 0.14.0",
  1521. "paste",
  1522. "serde_json",
  1523. "sqlparser",
  1524. ]
  1525. [[package]]
  1526. name = "datafusion-expr-common"
  1527. version = "52.5.0"
  1528. source = "registry+https://github.com/rust-lang/crates.io-index"
  1529. checksum = "1b486b5f6255d40976b88bb83813b0d035a8333e0ec39864824e78068cf42fa6"
  1530. dependencies = [
  1531. "arrow",
  1532. "datafusion-common",
  1533. "indexmap 2.14.0",
  1534. "itertools 0.14.0",
  1535. "paste",
  1536. ]
  1537. [[package]]
  1538. name = "datafusion-functions"
  1539. version = "52.5.0"
  1540. source = "registry+https://github.com/rust-lang/crates.io-index"
  1541. checksum = "07356c94118d881130dd0ffbff127540407d969c8978736e324edcd6c41cd48f"
  1542. dependencies = [
  1543. "arrow",
  1544. "arrow-buffer",
  1545. "base64 0.22.1",
  1546. "blake2",
  1547. "blake3",
  1548. "chrono",
  1549. "chrono-tz",
  1550. "datafusion-common",
  1551. "datafusion-doc",
  1552. "datafusion-execution",
  1553. "datafusion-expr",
  1554. "datafusion-expr-common",
  1555. "datafusion-macros",
  1556. "hex",
  1557. "itertools 0.14.0",
  1558. "log",
  1559. "md-5",
  1560. "num-traits",
  1561. "rand 0.9.5",
  1562. "regex",
  1563. "sha2",
  1564. "unicode-segmentation",
  1565. "uuid",
  1566. ]
  1567. [[package]]
  1568. name = "datafusion-functions-aggregate"
  1569. version = "52.5.0"
  1570. source = "registry+https://github.com/rust-lang/crates.io-index"
  1571. checksum = "b644f9cf696df9233ce6958b9807666d78563b56f923267474dd6c07795f1f8f"
  1572. dependencies = [
  1573. "ahash",
  1574. "arrow",
  1575. "datafusion-common",
  1576. "datafusion-doc",
  1577. "datafusion-execution",
  1578. "datafusion-expr",
  1579. "datafusion-functions-aggregate-common",
  1580. "datafusion-macros",
  1581. "datafusion-physical-expr",
  1582. "datafusion-physical-expr-common",
  1583. "half",
  1584. "log",
  1585. "paste",
  1586. ]
  1587. [[package]]
  1588. name = "datafusion-functions-aggregate-common"
  1589. version = "52.5.0"
  1590. source = "registry+https://github.com/rust-lang/crates.io-index"
  1591. checksum = "c1de2deaaabe8923ce9ea9f29c47bbb4ee14f67ea2fe1ab5398d9bbebcf86e56"
  1592. dependencies = [
  1593. "ahash",
  1594. "arrow",
  1595. "datafusion-common",
  1596. "datafusion-expr-common",
  1597. "datafusion-physical-expr-common",
  1598. ]
  1599. [[package]]
  1600. name = "datafusion-functions-nested"
  1601. version = "52.5.0"
  1602. source = "registry+https://github.com/rust-lang/crates.io-index"
  1603. checksum = "552f8d92e4331ee91d23c02d12bb6acf32cbfd5215117e01c0fb63cd4b15af1a"
  1604. dependencies = [
  1605. "arrow",
  1606. "arrow-ord",
  1607. "datafusion-common",
  1608. "datafusion-doc",
  1609. "datafusion-execution",
  1610. "datafusion-expr",
  1611. "datafusion-expr-common",
  1612. "datafusion-functions",
  1613. "datafusion-functions-aggregate",
  1614. "datafusion-functions-aggregate-common",
  1615. "datafusion-macros",
  1616. "datafusion-physical-expr-common",
  1617. "itertools 0.14.0",
  1618. "log",
  1619. "paste",
  1620. ]
  1621. [[package]]
  1622. name = "datafusion-functions-table"
  1623. version = "52.5.0"
  1624. source = "registry+https://github.com/rust-lang/crates.io-index"
  1625. checksum = "970fd0cdd3df8802b9a9975ff600998289ba9d46682a4f7285cba4820c9ada78"
  1626. dependencies = [
  1627. "arrow",
  1628. "async-trait",
  1629. "datafusion-catalog",
  1630. "datafusion-common",
  1631. "datafusion-expr",
  1632. "datafusion-physical-plan",
  1633. "parking_lot",
  1634. "paste",
  1635. ]
  1636. [[package]]
  1637. name = "datafusion-functions-window"
  1638. version = "52.5.0"
  1639. source = "registry+https://github.com/rust-lang/crates.io-index"
  1640. checksum = "40b4c21a7c8a986a1866c0a87ab756d0bbf7b5f41f306009fa2d9af79c52ed31"
  1641. dependencies = [
  1642. "arrow",
  1643. "datafusion-common",
  1644. "datafusion-doc",
  1645. "datafusion-expr",
  1646. "datafusion-functions-window-common",
  1647. "datafusion-macros",
  1648. "datafusion-physical-expr",
  1649. "datafusion-physical-expr-common",
  1650. "log",
  1651. "paste",
  1652. ]
  1653. [[package]]
  1654. name = "datafusion-functions-window-common"
  1655. version = "52.5.0"
  1656. source = "registry+https://github.com/rust-lang/crates.io-index"
  1657. checksum = "b1210ad73b8b3211aeaf4a42bef9bd7a2b7fce3ec119a478831f18c6ff7f7b93"
  1658. dependencies = [
  1659. "datafusion-common",
  1660. "datafusion-physical-expr-common",
  1661. ]
  1662. [[package]]
  1663. name = "datafusion-macros"
  1664. version = "52.5.0"
  1665. source = "registry+https://github.com/rust-lang/crates.io-index"
  1666. checksum = "aaa566a963013a38681ad82a727a654bc7feb19632426aea8c3412d415d200c5"
  1667. dependencies = [
  1668. "datafusion-doc",
  1669. "quote",
  1670. "syn 2.0.119",
  1671. ]
  1672. [[package]]
  1673. name = "datafusion-optimizer"
  1674. version = "52.5.0"
  1675. source = "registry+https://github.com/rust-lang/crates.io-index"
  1676. checksum = "ff9aa82b240252a88dee118372f9b9757c545ab9e53c0736bebab2e7da0ef1f2"
  1677. dependencies = [
  1678. "arrow",
  1679. "chrono",
  1680. "datafusion-common",
  1681. "datafusion-expr",
  1682. "datafusion-expr-common",
  1683. "datafusion-physical-expr",
  1684. "indexmap 2.14.0",
  1685. "itertools 0.14.0",
  1686. "log",
  1687. "regex",
  1688. "regex-syntax",
  1689. ]
  1690. [[package]]
  1691. name = "datafusion-physical-expr"
  1692. version = "52.5.0"
  1693. source = "registry+https://github.com/rust-lang/crates.io-index"
  1694. checksum = "7d48022b8af9988c1d852644f9e8b5584c490659769a550c5e8d39457a1da0a5"
  1695. dependencies = [
  1696. "ahash",
  1697. "arrow",
  1698. "datafusion-common",
  1699. "datafusion-expr",
  1700. "datafusion-expr-common",
  1701. "datafusion-functions-aggregate-common",
  1702. "datafusion-physical-expr-common",
  1703. "half",
  1704. "hashbrown 0.16.1",
  1705. "indexmap 2.14.0",
  1706. "itertools 0.14.0",
  1707. "parking_lot",
  1708. "paste",
  1709. "petgraph",
  1710. "tokio",
  1711. ]
  1712. [[package]]
  1713. name = "datafusion-physical-expr-adapter"
  1714. version = "52.5.0"
  1715. source = "registry+https://github.com/rust-lang/crates.io-index"
  1716. checksum = "ae7a8abc0b4fe624000972a9b145b30b7f1b680bffaa950ea53f78d9b21c27c3"
  1717. dependencies = [
  1718. "arrow",
  1719. "datafusion-common",
  1720. "datafusion-expr",
  1721. "datafusion-functions",
  1722. "datafusion-physical-expr",
  1723. "datafusion-physical-expr-common",
  1724. "itertools 0.14.0",
  1725. ]
  1726. [[package]]
  1727. name = "datafusion-physical-expr-common"
  1728. version = "52.5.0"
  1729. source = "registry+https://github.com/rust-lang/crates.io-index"
  1730. checksum = "147253ca3e6b9d59c162de64c02800973018660e13340dd1886dd038d17ac429"
  1731. dependencies = [
  1732. "ahash",
  1733. "arrow",
  1734. "chrono",
  1735. "datafusion-common",
  1736. "datafusion-expr-common",
  1737. "hashbrown 0.16.1",
  1738. "indexmap 2.14.0",
  1739. "itertools 0.14.0",
  1740. "parking_lot",
  1741. ]
  1742. [[package]]
  1743. name = "datafusion-physical-optimizer"
  1744. version = "52.5.0"
  1745. source = "registry+https://github.com/rust-lang/crates.io-index"
  1746. checksum = "689156bb2282107b6239db8d7ef44b4dab10a9b33d3491a0c74acac5e4fedd72"
  1747. dependencies = [
  1748. "arrow",
  1749. "datafusion-common",
  1750. "datafusion-execution",
  1751. "datafusion-expr",
  1752. "datafusion-expr-common",
  1753. "datafusion-physical-expr",
  1754. "datafusion-physical-expr-common",
  1755. "datafusion-physical-plan",
  1756. "datafusion-pruning",
  1757. "itertools 0.14.0",
  1758. ]
  1759. [[package]]
  1760. name = "datafusion-physical-plan"
  1761. version = "52.5.0"
  1762. source = "registry+https://github.com/rust-lang/crates.io-index"
  1763. checksum = "68253dc0ee5330aa558b2549c9b0da5af9fc17d753ae73022939014ad616fc28"
  1764. dependencies = [
  1765. "ahash",
  1766. "arrow",
  1767. "arrow-ord",
  1768. "arrow-schema",
  1769. "async-trait",
  1770. "datafusion-common",
  1771. "datafusion-common-runtime",
  1772. "datafusion-execution",
  1773. "datafusion-expr",
  1774. "datafusion-functions",
  1775. "datafusion-functions-aggregate-common",
  1776. "datafusion-functions-window-common",
  1777. "datafusion-physical-expr",
  1778. "datafusion-physical-expr-common",
  1779. "futures",
  1780. "half",
  1781. "hashbrown 0.16.1",
  1782. "indexmap 2.14.0",
  1783. "itertools 0.14.0",
  1784. "log",
  1785. "parking_lot",
  1786. "pin-project-lite",
  1787. "tokio",
  1788. ]
  1789. [[package]]
  1790. name = "datafusion-pruning"
  1791. version = "52.5.0"
  1792. source = "registry+https://github.com/rust-lang/crates.io-index"
  1793. checksum = "0fcad240a54d0b1d3e8f668398900260a53122d522b2102ab57218590decacd6"
  1794. dependencies = [
  1795. "arrow",
  1796. "datafusion-common",
  1797. "datafusion-datasource",
  1798. "datafusion-expr-common",
  1799. "datafusion-physical-expr",
  1800. "datafusion-physical-expr-common",
  1801. "datafusion-physical-plan",
  1802. "itertools 0.14.0",
  1803. "log",
  1804. ]
  1805. [[package]]
  1806. name = "datafusion-session"
  1807. version = "52.5.0"
  1808. source = "registry+https://github.com/rust-lang/crates.io-index"
  1809. checksum = "f58e83a68bb67007a8fcbf005c44cefe441270c7ee7f6dee10c0e0109b556f6d"
  1810. dependencies = [
  1811. "async-trait",
  1812. "datafusion-common",
  1813. "datafusion-execution",
  1814. "datafusion-expr",
  1815. "datafusion-physical-plan",
  1816. "parking_lot",
  1817. ]
  1818. [[package]]
  1819. name = "datafusion-sql"
  1820. version = "52.5.0"
  1821. source = "registry+https://github.com/rust-lang/crates.io-index"
  1822. checksum = "be53e9eb55db0fbb8980bb6d87f2435b0524acf4c718ed54a57cabbb299b2ab3"
  1823. dependencies = [
  1824. "arrow",
  1825. "bigdecimal",
  1826. "chrono",
  1827. "datafusion-common",
  1828. "datafusion-expr",
  1829. "indexmap 2.14.0",
  1830. "log",
  1831. "regex",
  1832. "sqlparser",
  1833. ]
  1834. [[package]]
  1835. name = "dbus"
  1836. version = "0.9.12"
  1837. source = "registry+https://github.com/rust-lang/crates.io-index"
  1838. checksum = "3ab69f03cc8c4340c9c8e315114e1658e6775a9b16a04357973aa21cec22b32e"
  1839. dependencies = [
  1840. "libc",
  1841. "libdbus-sys",
  1842. "windows-sys 0.61.2",
  1843. ]
  1844. [[package]]
  1845. name = "debug_unsafe"
  1846. version = "0.1.4"
  1847. source = "registry+https://github.com/rust-lang/crates.io-index"
  1848. checksum = "7eed2c4702fa172d1ce21078faa7c5203e69f5394d48cc436d25928394a867a2"
  1849. [[package]]
  1850. name = "deepsize"
  1851. version = "0.2.0"
  1852. source = "registry+https://github.com/rust-lang/crates.io-index"
  1853. checksum = "1cdb987ec36f6bf7bfbea3f928b75590b736fc42af8e54d97592481351b2b96c"
  1854. dependencies = [
  1855. "deepsize_derive",
  1856. ]
  1857. [[package]]
  1858. name = "deepsize_derive"
  1859. version = "0.1.2"
  1860. source = "registry+https://github.com/rust-lang/crates.io-index"
  1861. checksum = "990101d41f3bc8c1a45641024377ee284ecc338e5ecf3ea0f0e236d897c72796"
  1862. dependencies = [
  1863. "proc-macro2",
  1864. "quote",
  1865. "syn 1.0.109",
  1866. ]
  1867. [[package]]
  1868. name = "deflate64"
  1869. version = "0.1.12"
  1870. source = "registry+https://github.com/rust-lang/crates.io-index"
  1871. checksum = "ac6b926516df9c60bfa16e107b21086399f8285a44ca9711344b9e553c5146e2"
  1872. [[package]]
  1873. name = "defmt"
  1874. version = "1.1.1"
  1875. source = "registry+https://github.com/rust-lang/crates.io-index"
  1876. checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
  1877. dependencies = [
  1878. "bitflags 1.3.2",
  1879. "defmt-macros",
  1880. ]
  1881. [[package]]
  1882. name = "defmt-macros"
  1883. version = "1.1.1"
  1884. source = "registry+https://github.com/rust-lang/crates.io-index"
  1885. checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
  1886. dependencies = [
  1887. "defmt-parser",
  1888. "proc-macro2",
  1889. "quote",
  1890. "syn 2.0.119",
  1891. ]
  1892. [[package]]
  1893. name = "defmt-parser"
  1894. version = "1.0.0"
  1895. source = "registry+https://github.com/rust-lang/crates.io-index"
  1896. checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
  1897. dependencies = [
  1898. "thiserror 2.0.20",
  1899. ]
  1900. [[package]]
  1901. name = "deranged"
  1902. version = "0.5.8"
  1903. source = "registry+https://github.com/rust-lang/crates.io-index"
  1904. checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
  1905. dependencies = [
  1906. "serde_core",
  1907. ]
  1908. [[package]]
  1909. name = "derive_arbitrary"
  1910. version = "1.4.2"
  1911. source = "registry+https://github.com/rust-lang/crates.io-index"
  1912. checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
  1913. dependencies = [
  1914. "proc-macro2",
  1915. "quote",
  1916. "syn 2.0.119",
  1917. ]
  1918. [[package]]
  1919. name = "derive_builder"
  1920. version = "0.20.2"
  1921. source = "registry+https://github.com/rust-lang/crates.io-index"
  1922. checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
  1923. dependencies = [
  1924. "derive_builder_macro",
  1925. ]
  1926. [[package]]
  1927. name = "derive_builder_core"
  1928. version = "0.20.2"
  1929. source = "registry+https://github.com/rust-lang/crates.io-index"
  1930. checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
  1931. dependencies = [
  1932. "darling 0.20.11",
  1933. "proc-macro2",
  1934. "quote",
  1935. "syn 2.0.119",
  1936. ]
  1937. [[package]]
  1938. name = "derive_builder_macro"
  1939. version = "0.20.2"
  1940. source = "registry+https://github.com/rust-lang/crates.io-index"
  1941. checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
  1942. dependencies = [
  1943. "derive_builder_core",
  1944. "syn 2.0.119",
  1945. ]
  1946. [[package]]
  1947. name = "derive_more"
  1948. version = "2.1.1"
  1949. source = "registry+https://github.com/rust-lang/crates.io-index"
  1950. checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
  1951. dependencies = [
  1952. "derive_more-impl",
  1953. ]
  1954. [[package]]
  1955. name = "derive_more-impl"
  1956. version = "2.1.1"
  1957. source = "registry+https://github.com/rust-lang/crates.io-index"
  1958. checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
  1959. dependencies = [
  1960. "proc-macro2",
  1961. "quote",
  1962. "rustc_version",
  1963. "syn 2.0.119",
  1964. ]
  1965. [[package]]
  1966. name = "digest"
  1967. version = "0.10.7"
  1968. source = "registry+https://github.com/rust-lang/crates.io-index"
  1969. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1970. dependencies = [
  1971. "block-buffer",
  1972. "crypto-common",
  1973. "subtle",
  1974. ]
  1975. [[package]]
  1976. name = "dirs"
  1977. version = "6.0.0"
  1978. source = "registry+https://github.com/rust-lang/crates.io-index"
  1979. checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
  1980. dependencies = [
  1981. "dirs-sys",
  1982. ]
  1983. [[package]]
  1984. name = "dirs-sys"
  1985. version = "0.5.0"
  1986. source = "registry+https://github.com/rust-lang/crates.io-index"
  1987. checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
  1988. dependencies = [
  1989. "libc",
  1990. "option-ext",
  1991. "redox_users",
  1992. "windows-sys 0.60.2",
  1993. ]
  1994. [[package]]
  1995. name = "dispatch2"
  1996. version = "0.3.1"
  1997. source = "registry+https://github.com/rust-lang/crates.io-index"
  1998. checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
  1999. dependencies = [
  2000. "bitflags 2.13.1",
  2001. "block2",
  2002. "libc",
  2003. "objc2",
  2004. ]
  2005. [[package]]
  2006. name = "displaydoc"
  2007. version = "0.2.7"
  2008. source = "registry+https://github.com/rust-lang/crates.io-index"
  2009. checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
  2010. dependencies = [
  2011. "proc-macro2",
  2012. "quote",
  2013. "syn 3.0.3",
  2014. ]
  2015. [[package]]
  2016. name = "dlopen2"
  2017. version = "0.8.2"
  2018. source = "registry+https://github.com/rust-lang/crates.io-index"
  2019. checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4"
  2020. dependencies = [
  2021. "dlopen2_derive",
  2022. "libc",
  2023. "once_cell",
  2024. "winapi",
  2025. ]
  2026. [[package]]
  2027. name = "dlopen2_derive"
  2028. version = "0.4.3"
  2029. source = "registry+https://github.com/rust-lang/crates.io-index"
  2030. checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f"
  2031. dependencies = [
  2032. "proc-macro2",
  2033. "quote",
  2034. "syn 2.0.119",
  2035. ]
  2036. [[package]]
  2037. name = "document-features"
  2038. version = "0.2.12"
  2039. source = "registry+https://github.com/rust-lang/crates.io-index"
  2040. checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
  2041. dependencies = [
  2042. "litrs",
  2043. ]
  2044. [[package]]
  2045. name = "docx-rs"
  2046. version = "0.4.22"
  2047. source = "registry+https://github.com/rust-lang/crates.io-index"
  2048. checksum = "7fdf00e8af6d0b3e92d4bbf9b76f773d8b84ea80f310324ad16cbdc2e653e02c"
  2049. dependencies = [
  2050. "base64 0.22.1",
  2051. "crc32fast",
  2052. "image",
  2053. "quick-xml 0.41.0",
  2054. "serde",
  2055. "serde_json",
  2056. "smallvec",
  2057. "thiserror 2.0.20",
  2058. "zip 8.6.0",
  2059. ]
  2060. [[package]]
  2061. name = "dom_query"
  2062. version = "0.27.0"
  2063. source = "registry+https://github.com/rust-lang/crates.io-index"
  2064. checksum = "521e380c0c8afb8d9a1e83a1822ee03556fc3e3e7dbc1fd30be14e37f9cb3f89"
  2065. dependencies = [
  2066. "bit-set",
  2067. "cssparser",
  2068. "foldhash 0.2.0",
  2069. "html5ever",
  2070. "precomputed-hash",
  2071. "selectors",
  2072. "tendril",
  2073. ]
  2074. [[package]]
  2075. name = "downcast-rs"
  2076. version = "2.0.2"
  2077. source = "registry+https://github.com/rust-lang/crates.io-index"
  2078. checksum = "117240f60069e65410b3ae1bb213295bd828f707b5bec6596a1afc8793ce0cbc"
  2079. [[package]]
  2080. name = "dpi"
  2081. version = "0.1.2"
  2082. source = "registry+https://github.com/rust-lang/crates.io-index"
  2083. checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
  2084. dependencies = [
  2085. "serde",
  2086. ]
  2087. [[package]]
  2088. name = "dtoa"
  2089. version = "1.0.11"
  2090. source = "registry+https://github.com/rust-lang/crates.io-index"
  2091. checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
  2092. [[package]]
  2093. name = "dtoa-short"
  2094. version = "0.3.5"
  2095. source = "registry+https://github.com/rust-lang/crates.io-index"
  2096. checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
  2097. dependencies = [
  2098. "dtoa",
  2099. ]
  2100. [[package]]
  2101. name = "dtor"
  2102. version = "0.3.0"
  2103. source = "registry+https://github.com/rust-lang/crates.io-index"
  2104. checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
  2105. dependencies = [
  2106. "dtor-proc-macro",
  2107. ]
  2108. [[package]]
  2109. name = "dtor-proc-macro"
  2110. version = "0.0.6"
  2111. source = "registry+https://github.com/rust-lang/crates.io-index"
  2112. checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
  2113. [[package]]
  2114. name = "dunce"
  2115. version = "1.0.5"
  2116. source = "registry+https://github.com/rust-lang/crates.io-index"
  2117. checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
  2118. [[package]]
  2119. name = "dyn-clone"
  2120. version = "1.0.20"
  2121. source = "registry+https://github.com/rust-lang/crates.io-index"
  2122. checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
  2123. [[package]]
  2124. name = "either"
  2125. version = "1.17.0"
  2126. source = "registry+https://github.com/rust-lang/crates.io-index"
  2127. checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
  2128. [[package]]
  2129. name = "embed-resource"
  2130. version = "3.0.11"
  2131. source = "registry+https://github.com/rust-lang/crates.io-index"
  2132. checksum = "fbfdaacccebec3b28e4866b8973543c7647797db5ada1bdab552e48fe665fbbd"
  2133. dependencies = [
  2134. "cc",
  2135. "memchr",
  2136. "rustc_version",
  2137. "toml 1.1.4+spec-1.1.0",
  2138. "vswhom",
  2139. "winreg",
  2140. ]
  2141. [[package]]
  2142. name = "embed_plist"
  2143. version = "1.2.2"
  2144. source = "registry+https://github.com/rust-lang/crates.io-index"
  2145. checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
  2146. [[package]]
  2147. name = "encoding_rs"
  2148. version = "0.8.35"
  2149. source = "registry+https://github.com/rust-lang/crates.io-index"
  2150. checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
  2151. dependencies = [
  2152. "cfg-if",
  2153. ]
  2154. [[package]]
  2155. name = "endi"
  2156. version = "1.1.1"
  2157. source = "registry+https://github.com/rust-lang/crates.io-index"
  2158. checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
  2159. [[package]]
  2160. name = "enumflags2"
  2161. version = "0.7.12"
  2162. source = "registry+https://github.com/rust-lang/crates.io-index"
  2163. checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
  2164. dependencies = [
  2165. "enumflags2_derive",
  2166. "serde",
  2167. ]
  2168. [[package]]
  2169. name = "enumflags2_derive"
  2170. version = "0.7.12"
  2171. source = "registry+https://github.com/rust-lang/crates.io-index"
  2172. checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
  2173. dependencies = [
  2174. "proc-macro2",
  2175. "quote",
  2176. "syn 2.0.119",
  2177. ]
  2178. [[package]]
  2179. name = "env_home"
  2180. version = "0.1.0"
  2181. source = "registry+https://github.com/rust-lang/crates.io-index"
  2182. checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
  2183. [[package]]
  2184. name = "equivalent"
  2185. version = "1.0.2"
  2186. source = "registry+https://github.com/rust-lang/crates.io-index"
  2187. checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
  2188. [[package]]
  2189. name = "erased-serde"
  2190. version = "0.4.10"
  2191. source = "registry+https://github.com/rust-lang/crates.io-index"
  2192. checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
  2193. dependencies = [
  2194. "serde",
  2195. "serde_core",
  2196. "typeid",
  2197. ]
  2198. [[package]]
  2199. name = "errno"
  2200. version = "0.3.14"
  2201. source = "registry+https://github.com/rust-lang/crates.io-index"
  2202. checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
  2203. dependencies = [
  2204. "libc",
  2205. "windows-sys 0.60.2",
  2206. ]
  2207. [[package]]
  2208. name = "ethnum"
  2209. version = "1.5.3"
  2210. source = "registry+https://github.com/rust-lang/crates.io-index"
  2211. checksum = "40404c3f5f511ec4da6fe866ddf6a717c309fdbb69fbbad7b0f3edab8f2e835f"
  2212. [[package]]
  2213. name = "event-listener"
  2214. version = "5.4.2"
  2215. source = "registry+https://github.com/rust-lang/crates.io-index"
  2216. checksum = "5a23add41df1562121a9393cb065eab5146a1242410f23a644851e90cfd669d2"
  2217. dependencies = [
  2218. "parking",
  2219. "pin-project-lite",
  2220. ]
  2221. [[package]]
  2222. name = "event-listener-strategy"
  2223. version = "0.5.4"
  2224. source = "registry+https://github.com/rust-lang/crates.io-index"
  2225. checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
  2226. dependencies = [
  2227. "event-listener",
  2228. "pin-project-lite",
  2229. ]
  2230. [[package]]
  2231. name = "fast-float2"
  2232. version = "0.2.4"
  2233. source = "registry+https://github.com/rust-lang/crates.io-index"
  2234. checksum = "c6e8948ce679d00a02a94739ea185595dca7118ed04feb991127e443bd3d761f"
  2235. [[package]]
  2236. name = "fastdivide"
  2237. version = "0.4.2"
  2238. source = "registry+https://github.com/rust-lang/crates.io-index"
  2239. checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471"
  2240. [[package]]
  2241. name = "fastrand"
  2242. version = "2.5.0"
  2243. source = "registry+https://github.com/rust-lang/crates.io-index"
  2244. checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
  2245. [[package]]
  2246. name = "fax"
  2247. version = "0.2.7"
  2248. source = "registry+https://github.com/rust-lang/crates.io-index"
  2249. checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
  2250. [[package]]
  2251. name = "fdeflate"
  2252. version = "0.3.7"
  2253. source = "registry+https://github.com/rust-lang/crates.io-index"
  2254. checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
  2255. dependencies = [
  2256. "simd-adler32",
  2257. ]
  2258. [[package]]
  2259. name = "field-offset"
  2260. version = "0.3.6"
  2261. source = "registry+https://github.com/rust-lang/crates.io-index"
  2262. checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
  2263. dependencies = [
  2264. "memoffset",
  2265. "rustc_version",
  2266. ]
  2267. [[package]]
  2268. name = "filetime"
  2269. version = "0.2.29"
  2270. source = "registry+https://github.com/rust-lang/crates.io-index"
  2271. checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
  2272. dependencies = [
  2273. "cfg-if",
  2274. "libc",
  2275. ]
  2276. [[package]]
  2277. name = "find-msvc-tools"
  2278. version = "0.1.11"
  2279. source = "registry+https://github.com/rust-lang/crates.io-index"
  2280. checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
  2281. [[package]]
  2282. name = "fixedbitset"
  2283. version = "0.5.7"
  2284. source = "registry+https://github.com/rust-lang/crates.io-index"
  2285. checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
  2286. [[package]]
  2287. name = "flatbuffers"
  2288. version = "25.12.19"
  2289. source = "registry+https://github.com/rust-lang/crates.io-index"
  2290. checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
  2291. dependencies = [
  2292. "bitflags 2.13.1",
  2293. "rustc_version",
  2294. ]
  2295. [[package]]
  2296. name = "flate2"
  2297. version = "1.1.9"
  2298. source = "registry+https://github.com/rust-lang/crates.io-index"
  2299. checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
  2300. dependencies = [
  2301. "crc32fast",
  2302. "miniz_oxide",
  2303. "zlib-rs",
  2304. ]
  2305. [[package]]
  2306. name = "fnv"
  2307. version = "1.0.7"
  2308. source = "registry+https://github.com/rust-lang/crates.io-index"
  2309. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  2310. [[package]]
  2311. name = "foldhash"
  2312. version = "0.1.5"
  2313. source = "registry+https://github.com/rust-lang/crates.io-index"
  2314. checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
  2315. [[package]]
  2316. name = "foldhash"
  2317. version = "0.2.0"
  2318. source = "registry+https://github.com/rust-lang/crates.io-index"
  2319. checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
  2320. [[package]]
  2321. name = "foreign-types"
  2322. version = "0.5.0"
  2323. source = "registry+https://github.com/rust-lang/crates.io-index"
  2324. checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
  2325. dependencies = [
  2326. "foreign-types-macros",
  2327. "foreign-types-shared",
  2328. ]
  2329. [[package]]
  2330. name = "foreign-types-macros"
  2331. version = "0.2.4"
  2332. source = "registry+https://github.com/rust-lang/crates.io-index"
  2333. checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
  2334. dependencies = [
  2335. "proc-macro2",
  2336. "quote",
  2337. "syn 3.0.3",
  2338. ]
  2339. [[package]]
  2340. name = "foreign-types-shared"
  2341. version = "0.3.1"
  2342. source = "registry+https://github.com/rust-lang/crates.io-index"
  2343. checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
  2344. [[package]]
  2345. name = "form_urlencoded"
  2346. version = "1.2.2"
  2347. source = "registry+https://github.com/rust-lang/crates.io-index"
  2348. checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
  2349. dependencies = [
  2350. "percent-encoding",
  2351. ]
  2352. [[package]]
  2353. name = "fs4"
  2354. version = "0.8.4"
  2355. source = "registry+https://github.com/rust-lang/crates.io-index"
  2356. checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8"
  2357. dependencies = [
  2358. "rustix 0.38.44",
  2359. "windows-sys 0.52.0",
  2360. ]
  2361. [[package]]
  2362. name = "fsevent-sys"
  2363. version = "4.1.0"
  2364. source = "registry+https://github.com/rust-lang/crates.io-index"
  2365. checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
  2366. dependencies = [
  2367. "libc",
  2368. ]
  2369. [[package]]
  2370. name = "fsst"
  2371. version = "4.0.0"
  2372. source = "registry+https://github.com/rust-lang/crates.io-index"
  2373. checksum = "2195cc7f87e84bd695586137de99605e7e9579b26ec5e01b82960ddb4d0922f2"
  2374. dependencies = [
  2375. "arrow-array",
  2376. "rand 0.9.5",
  2377. ]
  2378. [[package]]
  2379. name = "fst"
  2380. version = "0.4.7"
  2381. source = "registry+https://github.com/rust-lang/crates.io-index"
  2382. checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a"
  2383. dependencies = [
  2384. "utf8-ranges",
  2385. ]
  2386. [[package]]
  2387. name = "funty"
  2388. version = "2.0.0"
  2389. source = "registry+https://github.com/rust-lang/crates.io-index"
  2390. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  2391. [[package]]
  2392. name = "futures"
  2393. version = "0.3.34"
  2394. source = "registry+https://github.com/rust-lang/crates.io-index"
  2395. checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
  2396. dependencies = [
  2397. "futures-channel",
  2398. "futures-core",
  2399. "futures-executor",
  2400. "futures-io",
  2401. "futures-sink",
  2402. "futures-task",
  2403. "futures-util",
  2404. ]
  2405. [[package]]
  2406. name = "futures-channel"
  2407. version = "0.3.34"
  2408. source = "registry+https://github.com/rust-lang/crates.io-index"
  2409. checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
  2410. dependencies = [
  2411. "futures-core",
  2412. "futures-sink",
  2413. ]
  2414. [[package]]
  2415. name = "futures-core"
  2416. version = "0.3.34"
  2417. source = "registry+https://github.com/rust-lang/crates.io-index"
  2418. checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
  2419. [[package]]
  2420. name = "futures-executor"
  2421. version = "0.3.34"
  2422. source = "registry+https://github.com/rust-lang/crates.io-index"
  2423. checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
  2424. dependencies = [
  2425. "futures-core",
  2426. "futures-task",
  2427. "futures-util",
  2428. ]
  2429. [[package]]
  2430. name = "futures-io"
  2431. version = "0.3.34"
  2432. source = "registry+https://github.com/rust-lang/crates.io-index"
  2433. checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
  2434. [[package]]
  2435. name = "futures-lite"
  2436. version = "2.6.1"
  2437. source = "registry+https://github.com/rust-lang/crates.io-index"
  2438. checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
  2439. dependencies = [
  2440. "fastrand",
  2441. "futures-core",
  2442. "futures-io",
  2443. "parking",
  2444. "pin-project-lite",
  2445. ]
  2446. [[package]]
  2447. name = "futures-macro"
  2448. version = "0.3.34"
  2449. source = "registry+https://github.com/rust-lang/crates.io-index"
  2450. checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
  2451. dependencies = [
  2452. "proc-macro2",
  2453. "quote",
  2454. "syn 3.0.3",
  2455. ]
  2456. [[package]]
  2457. name = "futures-sink"
  2458. version = "0.3.34"
  2459. source = "registry+https://github.com/rust-lang/crates.io-index"
  2460. checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
  2461. [[package]]
  2462. name = "futures-task"
  2463. version = "0.3.34"
  2464. source = "registry+https://github.com/rust-lang/crates.io-index"
  2465. checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
  2466. [[package]]
  2467. name = "futures-util"
  2468. version = "0.3.34"
  2469. source = "registry+https://github.com/rust-lang/crates.io-index"
  2470. checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
  2471. dependencies = [
  2472. "futures-channel",
  2473. "futures-core",
  2474. "futures-io",
  2475. "futures-macro",
  2476. "futures-sink",
  2477. "futures-task",
  2478. "memchr",
  2479. "pin-project-lite",
  2480. "slab",
  2481. ]
  2482. [[package]]
  2483. name = "gdk"
  2484. version = "0.18.2"
  2485. source = "registry+https://github.com/rust-lang/crates.io-index"
  2486. checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691"
  2487. dependencies = [
  2488. "cairo-rs",
  2489. "gdk-pixbuf",
  2490. "gdk-sys",
  2491. "gio",
  2492. "glib",
  2493. "libc",
  2494. "pango",
  2495. ]
  2496. [[package]]
  2497. name = "gdk-pixbuf"
  2498. version = "0.18.5"
  2499. source = "registry+https://github.com/rust-lang/crates.io-index"
  2500. checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
  2501. dependencies = [
  2502. "gdk-pixbuf-sys",
  2503. "gio",
  2504. "glib",
  2505. "libc",
  2506. "once_cell",
  2507. ]
  2508. [[package]]
  2509. name = "gdk-pixbuf-sys"
  2510. version = "0.18.0"
  2511. source = "registry+https://github.com/rust-lang/crates.io-index"
  2512. checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
  2513. dependencies = [
  2514. "gio-sys",
  2515. "glib-sys",
  2516. "gobject-sys",
  2517. "libc",
  2518. "system-deps",
  2519. ]
  2520. [[package]]
  2521. name = "gdk-sys"
  2522. version = "0.18.2"
  2523. source = "registry+https://github.com/rust-lang/crates.io-index"
  2524. checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7"
  2525. dependencies = [
  2526. "cairo-sys-rs",
  2527. "gdk-pixbuf-sys",
  2528. "gio-sys",
  2529. "glib-sys",
  2530. "gobject-sys",
  2531. "libc",
  2532. "pango-sys",
  2533. "pkg-config",
  2534. "system-deps",
  2535. ]
  2536. [[package]]
  2537. name = "gdkwayland-sys"
  2538. version = "0.18.2"
  2539. source = "registry+https://github.com/rust-lang/crates.io-index"
  2540. checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69"
  2541. dependencies = [
  2542. "gdk-sys",
  2543. "glib-sys",
  2544. "gobject-sys",
  2545. "libc",
  2546. "pkg-config",
  2547. "system-deps",
  2548. ]
  2549. [[package]]
  2550. name = "gdkx11"
  2551. version = "0.18.2"
  2552. source = "registry+https://github.com/rust-lang/crates.io-index"
  2553. checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe"
  2554. dependencies = [
  2555. "gdk",
  2556. "gdkx11-sys",
  2557. "gio",
  2558. "glib",
  2559. "libc",
  2560. "x11",
  2561. ]
  2562. [[package]]
  2563. name = "gdkx11-sys"
  2564. version = "0.18.2"
  2565. source = "registry+https://github.com/rust-lang/crates.io-index"
  2566. checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d"
  2567. dependencies = [
  2568. "gdk-sys",
  2569. "glib-sys",
  2570. "libc",
  2571. "system-deps",
  2572. "x11",
  2573. ]
  2574. [[package]]
  2575. name = "generator"
  2576. version = "0.8.9"
  2577. source = "registry+https://github.com/rust-lang/crates.io-index"
  2578. checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
  2579. dependencies = [
  2580. "cc",
  2581. "cfg-if",
  2582. "libc",
  2583. "log",
  2584. "rustversion",
  2585. "windows-link 0.2.1",
  2586. "windows-result 0.4.1",
  2587. ]
  2588. [[package]]
  2589. name = "generic-array"
  2590. version = "0.14.7"
  2591. source = "registry+https://github.com/rust-lang/crates.io-index"
  2592. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2593. dependencies = [
  2594. "typenum",
  2595. "version_check",
  2596. ]
  2597. [[package]]
  2598. name = "getrandom"
  2599. version = "0.2.17"
  2600. source = "registry+https://github.com/rust-lang/crates.io-index"
  2601. checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
  2602. dependencies = [
  2603. "cfg-if",
  2604. "js-sys",
  2605. "libc",
  2606. "wasi",
  2607. "wasm-bindgen",
  2608. ]
  2609. [[package]]
  2610. name = "getrandom"
  2611. version = "0.3.4"
  2612. source = "registry+https://github.com/rust-lang/crates.io-index"
  2613. checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
  2614. dependencies = [
  2615. "cfg-if",
  2616. "js-sys",
  2617. "libc",
  2618. "r-efi 5.3.0",
  2619. "wasip2",
  2620. "wasm-bindgen",
  2621. ]
  2622. [[package]]
  2623. name = "getrandom"
  2624. version = "0.4.3"
  2625. source = "registry+https://github.com/rust-lang/crates.io-index"
  2626. checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
  2627. dependencies = [
  2628. "cfg-if",
  2629. "js-sys",
  2630. "libc",
  2631. "r-efi 6.0.0",
  2632. "rand_core 0.10.1",
  2633. "wasm-bindgen",
  2634. ]
  2635. [[package]]
  2636. name = "gif"
  2637. version = "0.14.2"
  2638. source = "registry+https://github.com/rust-lang/crates.io-index"
  2639. checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
  2640. dependencies = [
  2641. "color_quant",
  2642. "weezl",
  2643. ]
  2644. [[package]]
  2645. name = "gio"
  2646. version = "0.18.4"
  2647. source = "registry+https://github.com/rust-lang/crates.io-index"
  2648. checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
  2649. dependencies = [
  2650. "futures-channel",
  2651. "futures-core",
  2652. "futures-io",
  2653. "futures-util",
  2654. "gio-sys",
  2655. "glib",
  2656. "libc",
  2657. "once_cell",
  2658. "pin-project-lite",
  2659. "smallvec",
  2660. "thiserror 1.0.69",
  2661. ]
  2662. [[package]]
  2663. name = "gio-sys"
  2664. version = "0.18.1"
  2665. source = "registry+https://github.com/rust-lang/crates.io-index"
  2666. checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
  2667. dependencies = [
  2668. "glib-sys",
  2669. "gobject-sys",
  2670. "libc",
  2671. "system-deps",
  2672. "winapi",
  2673. ]
  2674. [[package]]
  2675. name = "glib"
  2676. version = "0.18.5"
  2677. source = "registry+https://github.com/rust-lang/crates.io-index"
  2678. checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
  2679. dependencies = [
  2680. "bitflags 2.13.1",
  2681. "futures-channel",
  2682. "futures-core",
  2683. "futures-executor",
  2684. "futures-task",
  2685. "futures-util",
  2686. "gio-sys",
  2687. "glib-macros",
  2688. "glib-sys",
  2689. "gobject-sys",
  2690. "libc",
  2691. "memchr",
  2692. "once_cell",
  2693. "smallvec",
  2694. "thiserror 1.0.69",
  2695. ]
  2696. [[package]]
  2697. name = "glib-macros"
  2698. version = "0.18.5"
  2699. source = "registry+https://github.com/rust-lang/crates.io-index"
  2700. checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
  2701. dependencies = [
  2702. "heck 0.4.1",
  2703. "proc-macro-crate 2.0.2",
  2704. "proc-macro-error",
  2705. "proc-macro2",
  2706. "quote",
  2707. "syn 2.0.119",
  2708. ]
  2709. [[package]]
  2710. name = "glib-sys"
  2711. version = "0.18.1"
  2712. source = "registry+https://github.com/rust-lang/crates.io-index"
  2713. checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
  2714. dependencies = [
  2715. "libc",
  2716. "system-deps",
  2717. ]
  2718. [[package]]
  2719. name = "glob"
  2720. version = "0.3.4"
  2721. source = "registry+https://github.com/rust-lang/crates.io-index"
  2722. checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
  2723. [[package]]
  2724. name = "gobject-sys"
  2725. version = "0.18.0"
  2726. source = "registry+https://github.com/rust-lang/crates.io-index"
  2727. checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
  2728. dependencies = [
  2729. "glib-sys",
  2730. "libc",
  2731. "system-deps",
  2732. ]
  2733. [[package]]
  2734. name = "gtk"
  2735. version = "0.18.2"
  2736. source = "registry+https://github.com/rust-lang/crates.io-index"
  2737. checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a"
  2738. dependencies = [
  2739. "atk",
  2740. "cairo-rs",
  2741. "field-offset",
  2742. "futures-channel",
  2743. "gdk",
  2744. "gdk-pixbuf",
  2745. "gio",
  2746. "glib",
  2747. "gtk-sys",
  2748. "gtk3-macros",
  2749. "libc",
  2750. "pango",
  2751. "pkg-config",
  2752. ]
  2753. [[package]]
  2754. name = "gtk-sys"
  2755. version = "0.18.2"
  2756. source = "registry+https://github.com/rust-lang/crates.io-index"
  2757. checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414"
  2758. dependencies = [
  2759. "atk-sys",
  2760. "cairo-sys-rs",
  2761. "gdk-pixbuf-sys",
  2762. "gdk-sys",
  2763. "gio-sys",
  2764. "glib-sys",
  2765. "gobject-sys",
  2766. "libc",
  2767. "pango-sys",
  2768. "system-deps",
  2769. ]
  2770. [[package]]
  2771. name = "gtk3-macros"
  2772. version = "0.18.2"
  2773. source = "registry+https://github.com/rust-lang/crates.io-index"
  2774. checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d"
  2775. dependencies = [
  2776. "proc-macro-crate 1.3.1",
  2777. "proc-macro-error",
  2778. "proc-macro2",
  2779. "quote",
  2780. "syn 2.0.119",
  2781. ]
  2782. [[package]]
  2783. name = "h2"
  2784. version = "0.4.15"
  2785. source = "registry+https://github.com/rust-lang/crates.io-index"
  2786. checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
  2787. dependencies = [
  2788. "atomic-waker",
  2789. "bytes",
  2790. "fnv",
  2791. "futures-core",
  2792. "futures-sink",
  2793. "http",
  2794. "indexmap 2.14.0",
  2795. "slab",
  2796. "tokio",
  2797. "tokio-util",
  2798. "tracing",
  2799. ]
  2800. [[package]]
  2801. name = "half"
  2802. version = "2.7.1"
  2803. source = "registry+https://github.com/rust-lang/crates.io-index"
  2804. checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
  2805. dependencies = [
  2806. "cfg-if",
  2807. "crunchy",
  2808. "num-traits",
  2809. "zerocopy",
  2810. ]
  2811. [[package]]
  2812. name = "hashbrown"
  2813. version = "0.12.3"
  2814. source = "registry+https://github.com/rust-lang/crates.io-index"
  2815. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2816. [[package]]
  2817. name = "hashbrown"
  2818. version = "0.14.5"
  2819. source = "registry+https://github.com/rust-lang/crates.io-index"
  2820. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  2821. [[package]]
  2822. name = "hashbrown"
  2823. version = "0.15.5"
  2824. source = "registry+https://github.com/rust-lang/crates.io-index"
  2825. checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
  2826. dependencies = [
  2827. "allocator-api2",
  2828. "equivalent",
  2829. "foldhash 0.1.5",
  2830. ]
  2831. [[package]]
  2832. name = "hashbrown"
  2833. version = "0.16.1"
  2834. source = "registry+https://github.com/rust-lang/crates.io-index"
  2835. checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
  2836. dependencies = [
  2837. "allocator-api2",
  2838. "equivalent",
  2839. "foldhash 0.2.0",
  2840. ]
  2841. [[package]]
  2842. name = "hashbrown"
  2843. version = "0.17.1"
  2844. source = "registry+https://github.com/rust-lang/crates.io-index"
  2845. checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
  2846. [[package]]
  2847. name = "heck"
  2848. version = "0.4.1"
  2849. source = "registry+https://github.com/rust-lang/crates.io-index"
  2850. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  2851. [[package]]
  2852. name = "heck"
  2853. version = "0.5.0"
  2854. source = "registry+https://github.com/rust-lang/crates.io-index"
  2855. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  2856. [[package]]
  2857. name = "hermit-abi"
  2858. version = "0.5.2"
  2859. source = "registry+https://github.com/rust-lang/crates.io-index"
  2860. checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
  2861. [[package]]
  2862. name = "hex"
  2863. version = "0.4.3"
  2864. source = "registry+https://github.com/rust-lang/crates.io-index"
  2865. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2866. [[package]]
  2867. name = "hmac"
  2868. version = "0.12.1"
  2869. source = "registry+https://github.com/rust-lang/crates.io-index"
  2870. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2871. dependencies = [
  2872. "digest",
  2873. ]
  2874. [[package]]
  2875. name = "html5ever"
  2876. version = "0.38.0"
  2877. source = "registry+https://github.com/rust-lang/crates.io-index"
  2878. checksum = "1054432bae2f14e0061e33d23402fbaa67a921d319d56adc6bcf887ddad1cbc2"
  2879. dependencies = [
  2880. "log",
  2881. "markup5ever",
  2882. ]
  2883. [[package]]
  2884. name = "htmlescape"
  2885. version = "0.3.1"
  2886. source = "registry+https://github.com/rust-lang/crates.io-index"
  2887. checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
  2888. [[package]]
  2889. name = "http"
  2890. version = "1.5.0"
  2891. source = "registry+https://github.com/rust-lang/crates.io-index"
  2892. checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
  2893. dependencies = [
  2894. "bytes",
  2895. "itoa",
  2896. ]
  2897. [[package]]
  2898. name = "http-body"
  2899. version = "1.1.0"
  2900. source = "registry+https://github.com/rust-lang/crates.io-index"
  2901. checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
  2902. dependencies = [
  2903. "bytes",
  2904. "http",
  2905. ]
  2906. [[package]]
  2907. name = "http-body-util"
  2908. version = "0.1.5"
  2909. source = "registry+https://github.com/rust-lang/crates.io-index"
  2910. checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
  2911. dependencies = [
  2912. "bytes",
  2913. "futures-core",
  2914. "http",
  2915. "http-body",
  2916. "pin-project-lite",
  2917. ]
  2918. [[package]]
  2919. name = "http-range"
  2920. version = "0.1.5"
  2921. source = "registry+https://github.com/rust-lang/crates.io-index"
  2922. checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
  2923. [[package]]
  2924. name = "httparse"
  2925. version = "1.10.1"
  2926. source = "registry+https://github.com/rust-lang/crates.io-index"
  2927. checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
  2928. [[package]]
  2929. name = "humantime"
  2930. version = "2.4.0"
  2931. source = "registry+https://github.com/rust-lang/crates.io-index"
  2932. checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
  2933. [[package]]
  2934. name = "hyper"
  2935. version = "1.11.0"
  2936. source = "registry+https://github.com/rust-lang/crates.io-index"
  2937. checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
  2938. dependencies = [
  2939. "atomic-waker",
  2940. "bytes",
  2941. "futures-channel",
  2942. "futures-core",
  2943. "h2",
  2944. "http",
  2945. "http-body",
  2946. "httparse",
  2947. "itoa",
  2948. "pin-project-lite",
  2949. "smallvec",
  2950. "tokio",
  2951. "want",
  2952. ]
  2953. [[package]]
  2954. name = "hyper-rustls"
  2955. version = "0.27.9"
  2956. source = "registry+https://github.com/rust-lang/crates.io-index"
  2957. checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
  2958. dependencies = [
  2959. "http",
  2960. "hyper",
  2961. "hyper-util",
  2962. "rustls",
  2963. "rustls-native-certs",
  2964. "tokio",
  2965. "tokio-rustls",
  2966. "tower-service",
  2967. "webpki-roots",
  2968. ]
  2969. [[package]]
  2970. name = "hyper-util"
  2971. version = "0.1.20"
  2972. source = "registry+https://github.com/rust-lang/crates.io-index"
  2973. checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
  2974. dependencies = [
  2975. "base64 0.22.1",
  2976. "bytes",
  2977. "futures-channel",
  2978. "futures-util",
  2979. "http",
  2980. "http-body",
  2981. "hyper",
  2982. "ipnet",
  2983. "libc",
  2984. "percent-encoding",
  2985. "pin-project-lite",
  2986. "socket2",
  2987. "system-configuration",
  2988. "tokio",
  2989. "tower-service",
  2990. "tracing",
  2991. "windows-registry",
  2992. ]
  2993. [[package]]
  2994. name = "hyperloglogplus"
  2995. version = "0.4.1"
  2996. source = "registry+https://github.com/rust-lang/crates.io-index"
  2997. checksum = "621debdf94dcac33e50475fdd76d34d5ea9c0362a834b9db08c3024696c1fbe3"
  2998. dependencies = [
  2999. "serde",
  3000. ]
  3001. [[package]]
  3002. name = "iana-time-zone"
  3003. version = "0.1.65"
  3004. source = "registry+https://github.com/rust-lang/crates.io-index"
  3005. checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
  3006. dependencies = [
  3007. "android_system_properties",
  3008. "core-foundation-sys",
  3009. "iana-time-zone-haiku",
  3010. "js-sys",
  3011. "log",
  3012. "wasm-bindgen",
  3013. "windows-core 0.62.2",
  3014. ]
  3015. [[package]]
  3016. name = "iana-time-zone-haiku"
  3017. version = "0.1.2"
  3018. source = "registry+https://github.com/rust-lang/crates.io-index"
  3019. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  3020. dependencies = [
  3021. "cc",
  3022. ]
  3023. [[package]]
  3024. name = "ico"
  3025. version = "0.5.0"
  3026. source = "registry+https://github.com/rust-lang/crates.io-index"
  3027. checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371"
  3028. dependencies = [
  3029. "byteorder",
  3030. "png 0.17.16",
  3031. ]
  3032. [[package]]
  3033. name = "icu_collections"
  3034. version = "2.3.0"
  3035. source = "registry+https://github.com/rust-lang/crates.io-index"
  3036. checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
  3037. dependencies = [
  3038. "displaydoc",
  3039. "potential_utf",
  3040. "utf8_iter",
  3041. "yoke",
  3042. "zerofrom",
  3043. "zerovec",
  3044. ]
  3045. [[package]]
  3046. name = "icu_locale_core"
  3047. version = "2.3.0"
  3048. source = "registry+https://github.com/rust-lang/crates.io-index"
  3049. checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
  3050. dependencies = [
  3051. "displaydoc",
  3052. "litemap",
  3053. "tinystr",
  3054. "writeable",
  3055. "zerovec",
  3056. ]
  3057. [[package]]
  3058. name = "icu_normalizer"
  3059. version = "2.3.0"
  3060. source = "registry+https://github.com/rust-lang/crates.io-index"
  3061. checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
  3062. dependencies = [
  3063. "icu_collections",
  3064. "icu_normalizer_data",
  3065. "icu_properties",
  3066. "icu_provider",
  3067. "smallvec",
  3068. "zerovec",
  3069. ]
  3070. [[package]]
  3071. name = "icu_normalizer_data"
  3072. version = "2.3.0"
  3073. source = "registry+https://github.com/rust-lang/crates.io-index"
  3074. checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
  3075. [[package]]
  3076. name = "icu_properties"
  3077. version = "2.3.0"
  3078. source = "registry+https://github.com/rust-lang/crates.io-index"
  3079. checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
  3080. dependencies = [
  3081. "displaydoc",
  3082. "icu_collections",
  3083. "icu_locale_core",
  3084. "icu_properties_data",
  3085. "icu_provider",
  3086. "zerotrie",
  3087. "zerovec",
  3088. ]
  3089. [[package]]
  3090. name = "icu_properties_data"
  3091. version = "2.3.0"
  3092. source = "registry+https://github.com/rust-lang/crates.io-index"
  3093. checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
  3094. [[package]]
  3095. name = "icu_provider"
  3096. version = "2.3.0"
  3097. source = "registry+https://github.com/rust-lang/crates.io-index"
  3098. checksum = "92a7ed671a6aad807a8651a2e1782a6598fda9ce5185dd8158549e95a91c6428"
  3099. dependencies = [
  3100. "displaydoc",
  3101. "icu_locale_core",
  3102. "writeable",
  3103. "yoke",
  3104. "zerofrom",
  3105. "zerotrie",
  3106. "zerovec",
  3107. ]
  3108. [[package]]
  3109. name = "ident_case"
  3110. version = "1.0.1"
  3111. source = "registry+https://github.com/rust-lang/crates.io-index"
  3112. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  3113. [[package]]
  3114. name = "idna"
  3115. version = "1.1.0"
  3116. source = "registry+https://github.com/rust-lang/crates.io-index"
  3117. checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
  3118. dependencies = [
  3119. "idna_adapter",
  3120. "smallvec",
  3121. "utf8_iter",
  3122. ]
  3123. [[package]]
  3124. name = "idna_adapter"
  3125. version = "1.2.2"
  3126. source = "registry+https://github.com/rust-lang/crates.io-index"
  3127. checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
  3128. dependencies = [
  3129. "icu_normalizer",
  3130. "icu_properties",
  3131. ]
  3132. [[package]]
  3133. name = "image"
  3134. version = "0.25.10"
  3135. source = "registry+https://github.com/rust-lang/crates.io-index"
  3136. checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
  3137. dependencies = [
  3138. "bytemuck",
  3139. "byteorder-lite",
  3140. "color_quant",
  3141. "gif",
  3142. "moxcms",
  3143. "num-traits",
  3144. "png 0.18.1",
  3145. "tiff",
  3146. "zune-core",
  3147. "zune-jpeg",
  3148. ]
  3149. [[package]]
  3150. name = "indexmap"
  3151. version = "1.9.3"
  3152. source = "registry+https://github.com/rust-lang/crates.io-index"
  3153. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  3154. dependencies = [
  3155. "autocfg",
  3156. "hashbrown 0.12.3",
  3157. "serde",
  3158. ]
  3159. [[package]]
  3160. name = "indexmap"
  3161. version = "2.14.0"
  3162. source = "registry+https://github.com/rust-lang/crates.io-index"
  3163. checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
  3164. dependencies = [
  3165. "equivalent",
  3166. "hashbrown 0.17.1",
  3167. "serde",
  3168. "serde_core",
  3169. ]
  3170. [[package]]
  3171. name = "infer"
  3172. version = "0.19.0"
  3173. source = "registry+https://github.com/rust-lang/crates.io-index"
  3174. checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
  3175. dependencies = [
  3176. "cfb",
  3177. ]
  3178. [[package]]
  3179. name = "inotify"
  3180. version = "0.11.4"
  3181. source = "registry+https://github.com/rust-lang/crates.io-index"
  3182. checksum = "153be1941a183ec9ccd095ddbe17a8b8d435ef6c76e9e02451b933c3999af2c8"
  3183. dependencies = [
  3184. "bitflags 2.13.1",
  3185. "inotify-sys",
  3186. "libc",
  3187. ]
  3188. [[package]]
  3189. name = "inotify-sys"
  3190. version = "0.1.8"
  3191. source = "registry+https://github.com/rust-lang/crates.io-index"
  3192. checksum = "c033f80b2c113cdf91ab7a33faa9cbc014726dcad99880c8609af2a370edf37d"
  3193. dependencies = [
  3194. "libc",
  3195. ]
  3196. [[package]]
  3197. name = "inout"
  3198. version = "0.1.4"
  3199. source = "registry+https://github.com/rust-lang/crates.io-index"
  3200. checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
  3201. dependencies = [
  3202. "generic-array",
  3203. ]
  3204. [[package]]
  3205. name = "ipnet"
  3206. version = "2.12.1"
  3207. source = "registry+https://github.com/rust-lang/crates.io-index"
  3208. checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
  3209. [[package]]
  3210. name = "is-docker"
  3211. version = "0.2.0"
  3212. source = "registry+https://github.com/rust-lang/crates.io-index"
  3213. checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
  3214. dependencies = [
  3215. "once_cell",
  3216. ]
  3217. [[package]]
  3218. name = "is-wsl"
  3219. version = "0.4.0"
  3220. source = "registry+https://github.com/rust-lang/crates.io-index"
  3221. checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
  3222. dependencies = [
  3223. "is-docker",
  3224. "once_cell",
  3225. ]
  3226. [[package]]
  3227. name = "itertools"
  3228. version = "0.13.0"
  3229. source = "registry+https://github.com/rust-lang/crates.io-index"
  3230. checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
  3231. dependencies = [
  3232. "either",
  3233. ]
  3234. [[package]]
  3235. name = "itertools"
  3236. version = "0.14.0"
  3237. source = "registry+https://github.com/rust-lang/crates.io-index"
  3238. checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
  3239. dependencies = [
  3240. "either",
  3241. ]
  3242. [[package]]
  3243. name = "itoa"
  3244. version = "1.0.18"
  3245. source = "registry+https://github.com/rust-lang/crates.io-index"
  3246. checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
  3247. [[package]]
  3248. name = "javascriptcore-rs"
  3249. version = "1.1.2"
  3250. source = "registry+https://github.com/rust-lang/crates.io-index"
  3251. checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
  3252. dependencies = [
  3253. "bitflags 1.3.2",
  3254. "glib",
  3255. "javascriptcore-rs-sys",
  3256. ]
  3257. [[package]]
  3258. name = "javascriptcore-rs-sys"
  3259. version = "1.1.1"
  3260. source = "registry+https://github.com/rust-lang/crates.io-index"
  3261. checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
  3262. dependencies = [
  3263. "glib-sys",
  3264. "gobject-sys",
  3265. "libc",
  3266. "system-deps",
  3267. ]
  3268. [[package]]
  3269. name = "jiff"
  3270. version = "0.2.35"
  3271. source = "registry+https://github.com/rust-lang/crates.io-index"
  3272. checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
  3273. dependencies = [
  3274. "defmt",
  3275. "jiff-core",
  3276. "jiff-static",
  3277. "jiff-tzdb-platform",
  3278. "log",
  3279. "portable-atomic",
  3280. "portable-atomic-util",
  3281. "serde_core",
  3282. "windows-link 0.2.1",
  3283. ]
  3284. [[package]]
  3285. name = "jiff-core"
  3286. version = "0.1.0"
  3287. source = "registry+https://github.com/rust-lang/crates.io-index"
  3288. checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
  3289. dependencies = [
  3290. "defmt",
  3291. ]
  3292. [[package]]
  3293. name = "jiff-static"
  3294. version = "0.2.35"
  3295. source = "registry+https://github.com/rust-lang/crates.io-index"
  3296. checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
  3297. dependencies = [
  3298. "jiff-core",
  3299. "proc-macro2",
  3300. "quote",
  3301. "syn 2.0.119",
  3302. ]
  3303. [[package]]
  3304. name = "jiff-tzdb"
  3305. version = "0.1.8"
  3306. source = "registry+https://github.com/rust-lang/crates.io-index"
  3307. checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
  3308. [[package]]
  3309. name = "jiff-tzdb-platform"
  3310. version = "0.1.3"
  3311. source = "registry+https://github.com/rust-lang/crates.io-index"
  3312. checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
  3313. dependencies = [
  3314. "jiff-tzdb",
  3315. ]
  3316. [[package]]
  3317. name = "jni"
  3318. version = "0.21.1"
  3319. source = "registry+https://github.com/rust-lang/crates.io-index"
  3320. checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
  3321. dependencies = [
  3322. "cesu8",
  3323. "cfg-if",
  3324. "combine",
  3325. "jni-sys 0.3.1",
  3326. "log",
  3327. "thiserror 1.0.69",
  3328. "walkdir",
  3329. "windows-sys 0.45.0",
  3330. ]
  3331. [[package]]
  3332. name = "jni"
  3333. version = "0.22.4"
  3334. source = "registry+https://github.com/rust-lang/crates.io-index"
  3335. checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
  3336. dependencies = [
  3337. "cfg-if",
  3338. "combine",
  3339. "jni-macros",
  3340. "jni-sys 0.4.1",
  3341. "log",
  3342. "simd_cesu8",
  3343. "thiserror 2.0.20",
  3344. "walkdir",
  3345. "windows-link 0.2.1",
  3346. ]
  3347. [[package]]
  3348. name = "jni-macros"
  3349. version = "0.22.4"
  3350. source = "registry+https://github.com/rust-lang/crates.io-index"
  3351. checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
  3352. dependencies = [
  3353. "proc-macro2",
  3354. "quote",
  3355. "rustc_version",
  3356. "simd_cesu8",
  3357. "syn 2.0.119",
  3358. ]
  3359. [[package]]
  3360. name = "jni-sys"
  3361. version = "0.3.1"
  3362. source = "registry+https://github.com/rust-lang/crates.io-index"
  3363. checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
  3364. dependencies = [
  3365. "jni-sys 0.4.1",
  3366. ]
  3367. [[package]]
  3368. name = "jni-sys"
  3369. version = "0.4.1"
  3370. source = "registry+https://github.com/rust-lang/crates.io-index"
  3371. checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
  3372. dependencies = [
  3373. "jni-sys-macros",
  3374. ]
  3375. [[package]]
  3376. name = "jni-sys-macros"
  3377. version = "0.4.1"
  3378. source = "registry+https://github.com/rust-lang/crates.io-index"
  3379. checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
  3380. dependencies = [
  3381. "quote",
  3382. "syn 2.0.119",
  3383. ]
  3384. [[package]]
  3385. name = "jobserver"
  3386. version = "0.1.35"
  3387. source = "registry+https://github.com/rust-lang/crates.io-index"
  3388. checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
  3389. dependencies = [
  3390. "getrandom 0.4.3",
  3391. "libc",
  3392. ]
  3393. [[package]]
  3394. name = "js-sys"
  3395. version = "0.3.104"
  3396. source = "registry+https://github.com/rust-lang/crates.io-index"
  3397. checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
  3398. dependencies = [
  3399. "cfg-if",
  3400. "futures-util",
  3401. "wasm-bindgen",
  3402. ]
  3403. [[package]]
  3404. name = "json-patch"
  3405. version = "3.0.1"
  3406. source = "registry+https://github.com/rust-lang/crates.io-index"
  3407. checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08"
  3408. dependencies = [
  3409. "jsonptr",
  3410. "serde",
  3411. "serde_json",
  3412. "thiserror 1.0.69",
  3413. ]
  3414. [[package]]
  3415. name = "jsonb"
  3416. version = "0.5.6"
  3417. source = "registry+https://github.com/rust-lang/crates.io-index"
  3418. checksum = "eb98fb29636087c40ad0d1274d9a30c0c1e83e03ae93f6e7e89247b37fcc6953"
  3419. dependencies = [
  3420. "byteorder",
  3421. "ethnum",
  3422. "fast-float2",
  3423. "itoa",
  3424. "jiff",
  3425. "nom 8.0.0",
  3426. "num-traits",
  3427. "ordered-float",
  3428. "rand 0.9.5",
  3429. "serde",
  3430. "serde_json",
  3431. "zmij",
  3432. ]
  3433. [[package]]
  3434. name = "jsonptr"
  3435. version = "0.6.3"
  3436. source = "registry+https://github.com/rust-lang/crates.io-index"
  3437. checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70"
  3438. dependencies = [
  3439. "serde",
  3440. "serde_json",
  3441. ]
  3442. [[package]]
  3443. name = "keepawake"
  3444. version = "0.6.0"
  3445. source = "registry+https://github.com/rust-lang/crates.io-index"
  3446. checksum = "5521b450ec179362595d5cbda7c3abd5da3af3dff58456434ad3ca33c95226b7"
  3447. dependencies = [
  3448. "cfg-if",
  3449. "derive_builder",
  3450. "objc2-core-foundation",
  3451. "objc2-io-kit",
  3452. "thiserror 2.0.20",
  3453. "windows 0.62.2",
  3454. "zbus",
  3455. ]
  3456. [[package]]
  3457. name = "keyboard-types"
  3458. version = "0.7.0"
  3459. source = "registry+https://github.com/rust-lang/crates.io-index"
  3460. checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
  3461. dependencies = [
  3462. "bitflags 2.13.1",
  3463. "serde",
  3464. "unicode-segmentation",
  3465. ]
  3466. [[package]]
  3467. name = "kqueue"
  3468. version = "1.2.1"
  3469. source = "registry+https://github.com/rust-lang/crates.io-index"
  3470. checksum = "8d763e5b24120b4ddf50de6c92308156765aabfbbccebf401da7cff2d70a41ea"
  3471. dependencies = [
  3472. "kqueue-sys",
  3473. "libc",
  3474. ]
  3475. [[package]]
  3476. name = "kqueue-sys"
  3477. version = "1.1.2"
  3478. source = "registry+https://github.com/rust-lang/crates.io-index"
  3479. checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
  3480. dependencies = [
  3481. "bitflags 2.13.1",
  3482. "libc",
  3483. ]
  3484. [[package]]
  3485. name = "lance"
  3486. version = "4.0.0"
  3487. source = "registry+https://github.com/rust-lang/crates.io-index"
  3488. checksum = "efe6c3ddd79cdfd2b7e1c23cafae52806906bc40fbd97de9e8cf2f8c7a75fc04"
  3489. dependencies = [
  3490. "arrow",
  3491. "arrow-arith",
  3492. "arrow-array",
  3493. "arrow-buffer",
  3494. "arrow-ipc",
  3495. "arrow-ord",
  3496. "arrow-row",
  3497. "arrow-schema",
  3498. "arrow-select",
  3499. "async-recursion",
  3500. "async-trait",
  3501. "async_cell",
  3502. "byteorder",
  3503. "bytes",
  3504. "chrono",
  3505. "crossbeam-skiplist",
  3506. "dashmap",
  3507. "datafusion",
  3508. "datafusion-expr",
  3509. "datafusion-functions",
  3510. "datafusion-physical-expr",
  3511. "datafusion-physical-plan",
  3512. "deepsize",
  3513. "either",
  3514. "futures",
  3515. "half",
  3516. "humantime",
  3517. "itertools 0.13.0",
  3518. "lance-arrow",
  3519. "lance-core",
  3520. "lance-datafusion",
  3521. "lance-encoding",
  3522. "lance-file",
  3523. "lance-index",
  3524. "lance-io",
  3525. "lance-linalg",
  3526. "lance-namespace",
  3527. "lance-table",
  3528. "log",
  3529. "moka",
  3530. "object_store",
  3531. "permutation",
  3532. "pin-project",
  3533. "prost",
  3534. "prost-types",
  3535. "rand 0.9.5",
  3536. "roaring",
  3537. "semver",
  3538. "serde",
  3539. "serde_json",
  3540. "snafu 0.9.2",
  3541. "tantivy",
  3542. "tokio",
  3543. "tokio-stream",
  3544. "tokio-util",
  3545. "tracing",
  3546. "url",
  3547. "uuid",
  3548. ]
  3549. [[package]]
  3550. name = "lance-arrow"
  3551. version = "4.0.0"
  3552. source = "registry+https://github.com/rust-lang/crates.io-index"
  3553. checksum = "5d9f5d95bdda2a2b790f1fb8028b5b6dcf661abeb3133a8bca0f3d24b054af87"
  3554. dependencies = [
  3555. "arrow-array",
  3556. "arrow-buffer",
  3557. "arrow-cast",
  3558. "arrow-data",
  3559. "arrow-ord",
  3560. "arrow-schema",
  3561. "arrow-select",
  3562. "bytes",
  3563. "futures",
  3564. "getrandom 0.2.17",
  3565. "half",
  3566. "jsonb",
  3567. "num-traits",
  3568. "rand 0.9.5",
  3569. ]
  3570. [[package]]
  3571. name = "lance-bitpacking"
  3572. version = "4.0.0"
  3573. source = "registry+https://github.com/rust-lang/crates.io-index"
  3574. checksum = "f827d6ab9f8f337a9509d5ad66a12f3314db8713868260521c344ef6135eb4e4"
  3575. dependencies = [
  3576. "arrayref",
  3577. "paste",
  3578. "seq-macro",
  3579. ]
  3580. [[package]]
  3581. name = "lance-core"
  3582. version = "4.0.0"
  3583. source = "registry+https://github.com/rust-lang/crates.io-index"
  3584. checksum = "0f1e25df6a79bf72ee6bcde0851f19b1cd36c5848c1b7db83340882d3c9fdecb"
  3585. dependencies = [
  3586. "arrow-array",
  3587. "arrow-buffer",
  3588. "arrow-schema",
  3589. "async-trait",
  3590. "byteorder",
  3591. "bytes",
  3592. "chrono",
  3593. "datafusion-common",
  3594. "datafusion-sql",
  3595. "deepsize",
  3596. "futures",
  3597. "itertools 0.13.0",
  3598. "lance-arrow",
  3599. "libc",
  3600. "log",
  3601. "mock_instant",
  3602. "moka",
  3603. "num_cpus",
  3604. "object_store",
  3605. "pin-project",
  3606. "prost",
  3607. "rand 0.9.5",
  3608. "roaring",
  3609. "serde_json",
  3610. "snafu 0.9.2",
  3611. "tempfile",
  3612. "tokio",
  3613. "tokio-stream",
  3614. "tokio-util",
  3615. "tracing",
  3616. "url",
  3617. ]
  3618. [[package]]
  3619. name = "lance-datafusion"
  3620. version = "4.0.0"
  3621. source = "registry+https://github.com/rust-lang/crates.io-index"
  3622. checksum = "93146de8ae720cb90edef81c2f2d0a1b065fc2f23ecff2419546f389b0fa70a4"
  3623. dependencies = [
  3624. "arrow",
  3625. "arrow-array",
  3626. "arrow-buffer",
  3627. "arrow-ord",
  3628. "arrow-schema",
  3629. "arrow-select",
  3630. "async-trait",
  3631. "chrono",
  3632. "datafusion",
  3633. "datafusion-common",
  3634. "datafusion-functions",
  3635. "datafusion-physical-expr",
  3636. "futures",
  3637. "jsonb",
  3638. "lance-arrow",
  3639. "lance-core",
  3640. "lance-datagen",
  3641. "log",
  3642. "pin-project",
  3643. "prost",
  3644. "prost-build",
  3645. "snafu 0.9.2",
  3646. "tokio",
  3647. "tracing",
  3648. ]
  3649. [[package]]
  3650. name = "lance-datagen"
  3651. version = "4.0.0"
  3652. source = "registry+https://github.com/rust-lang/crates.io-index"
  3653. checksum = "ccec8ce4d8e0a87a99c431dab2364398029f2ffb649c1a693c60c79e05ed30dd"
  3654. dependencies = [
  3655. "arrow",
  3656. "arrow-array",
  3657. "arrow-cast",
  3658. "arrow-schema",
  3659. "chrono",
  3660. "futures",
  3661. "half",
  3662. "hex",
  3663. "rand 0.9.5",
  3664. "rand_distr 0.5.1",
  3665. "rand_xoshiro",
  3666. "random_word",
  3667. ]
  3668. [[package]]
  3669. name = "lance-encoding"
  3670. version = "4.0.0"
  3671. source = "registry+https://github.com/rust-lang/crates.io-index"
  3672. checksum = "5c1aec0bbbac6bce829bc10f1ba066258126100596c375fb71908ecf11c2c2a5"
  3673. dependencies = [
  3674. "arrow-arith",
  3675. "arrow-array",
  3676. "arrow-buffer",
  3677. "arrow-cast",
  3678. "arrow-data",
  3679. "arrow-schema",
  3680. "arrow-select",
  3681. "bytemuck",
  3682. "byteorder",
  3683. "bytes",
  3684. "fsst",
  3685. "futures",
  3686. "hex",
  3687. "hyperloglogplus",
  3688. "itertools 0.13.0",
  3689. "lance-arrow",
  3690. "lance-bitpacking",
  3691. "lance-core",
  3692. "log",
  3693. "lz4",
  3694. "num-traits",
  3695. "prost",
  3696. "prost-build",
  3697. "prost-types",
  3698. "rand 0.9.5",
  3699. "snafu 0.9.2",
  3700. "strum",
  3701. "tokio",
  3702. "tracing",
  3703. "xxhash-rust",
  3704. "zstd",
  3705. ]
  3706. [[package]]
  3707. name = "lance-file"
  3708. version = "4.0.0"
  3709. source = "registry+https://github.com/rust-lang/crates.io-index"
  3710. checksum = "14a8c548804f5b17486dc2d3282356ed1957095a852780283bc401fdd69e9075"
  3711. dependencies = [
  3712. "arrow-arith",
  3713. "arrow-array",
  3714. "arrow-buffer",
  3715. "arrow-data",
  3716. "arrow-schema",
  3717. "arrow-select",
  3718. "async-recursion",
  3719. "async-trait",
  3720. "byteorder",
  3721. "bytes",
  3722. "datafusion-common",
  3723. "deepsize",
  3724. "futures",
  3725. "lance-arrow",
  3726. "lance-core",
  3727. "lance-encoding",
  3728. "lance-io",
  3729. "log",
  3730. "num-traits",
  3731. "object_store",
  3732. "prost",
  3733. "prost-build",
  3734. "prost-types",
  3735. "snafu 0.9.2",
  3736. "tokio",
  3737. "tracing",
  3738. ]
  3739. [[package]]
  3740. name = "lance-index"
  3741. version = "4.0.0"
  3742. source = "registry+https://github.com/rust-lang/crates.io-index"
  3743. checksum = "2da212f0090ea59f79ac3686660f596520c167fe1cb5f408900cf71d215f0e03"
  3744. dependencies = [
  3745. "arrow",
  3746. "arrow-arith",
  3747. "arrow-array",
  3748. "arrow-ord",
  3749. "arrow-schema",
  3750. "arrow-select",
  3751. "async-channel",
  3752. "async-recursion",
  3753. "async-trait",
  3754. "bitpacking",
  3755. "bitvec",
  3756. "bytes",
  3757. "chrono",
  3758. "crossbeam-queue",
  3759. "datafusion",
  3760. "datafusion-common",
  3761. "datafusion-expr",
  3762. "datafusion-physical-expr",
  3763. "datafusion-sql",
  3764. "deepsize",
  3765. "dirs",
  3766. "fst",
  3767. "futures",
  3768. "half",
  3769. "itertools 0.13.0",
  3770. "jsonb",
  3771. "lance-arrow",
  3772. "lance-core",
  3773. "lance-datafusion",
  3774. "lance-datagen",
  3775. "lance-encoding",
  3776. "lance-file",
  3777. "lance-io",
  3778. "lance-linalg",
  3779. "lance-table",
  3780. "libm",
  3781. "log",
  3782. "ndarray",
  3783. "num-traits",
  3784. "object_store",
  3785. "prost",
  3786. "prost-build",
  3787. "prost-types",
  3788. "rand 0.9.5",
  3789. "rand_distr 0.5.1",
  3790. "rangemap",
  3791. "rayon",
  3792. "roaring",
  3793. "serde",
  3794. "serde_json",
  3795. "smallvec",
  3796. "snafu 0.9.2",
  3797. "tantivy",
  3798. "tempfile",
  3799. "tokio",
  3800. "tracing",
  3801. "twox-hash",
  3802. "uuid",
  3803. ]
  3804. [[package]]
  3805. name = "lance-io"
  3806. version = "4.0.0"
  3807. source = "registry+https://github.com/rust-lang/crates.io-index"
  3808. checksum = "41d958eb4b56f03bbe0f5f85eb2b4e9657882812297b6f711f201ffc995f259f"
  3809. dependencies = [
  3810. "arrow",
  3811. "arrow-arith",
  3812. "arrow-array",
  3813. "arrow-buffer",
  3814. "arrow-cast",
  3815. "arrow-data",
  3816. "arrow-schema",
  3817. "arrow-select",
  3818. "async-recursion",
  3819. "async-trait",
  3820. "byteorder",
  3821. "bytes",
  3822. "chrono",
  3823. "deepsize",
  3824. "futures",
  3825. "http",
  3826. "lance-arrow",
  3827. "lance-core",
  3828. "lance-namespace",
  3829. "log",
  3830. "object_store",
  3831. "path_abs",
  3832. "pin-project",
  3833. "prost",
  3834. "rand 0.9.5",
  3835. "serde",
  3836. "snafu 0.9.2",
  3837. "tempfile",
  3838. "tokio",
  3839. "tracing",
  3840. "url",
  3841. ]
  3842. [[package]]
  3843. name = "lance-linalg"
  3844. version = "4.0.0"
  3845. source = "registry+https://github.com/rust-lang/crates.io-index"
  3846. checksum = "0285b70da35def7ed95e150fae1d5308089554e1290470403ed3c50cb235bc5e"
  3847. dependencies = [
  3848. "arrow-array",
  3849. "arrow-buffer",
  3850. "arrow-schema",
  3851. "cc",
  3852. "deepsize",
  3853. "half",
  3854. "lance-arrow",
  3855. "lance-core",
  3856. "num-traits",
  3857. "rand 0.9.5",
  3858. ]
  3859. [[package]]
  3860. name = "lance-namespace"
  3861. version = "4.0.0"
  3862. source = "registry+https://github.com/rust-lang/crates.io-index"
  3863. checksum = "5f78e2a828b654e062a495462c6e3eb4fcf0e7e907d761b8f217fc09ccd3ceac"
  3864. dependencies = [
  3865. "arrow",
  3866. "async-trait",
  3867. "bytes",
  3868. "lance-core",
  3869. "lance-namespace-reqwest-client",
  3870. "serde",
  3871. "snafu 0.9.2",
  3872. ]
  3873. [[package]]
  3874. name = "lance-namespace-impls"
  3875. version = "4.0.0"
  3876. source = "registry+https://github.com/rust-lang/crates.io-index"
  3877. checksum = "a2392314f3da38f00d166295e44244208a65ccfc256e274fa8631849fc3f4d94"
  3878. dependencies = [
  3879. "arrow",
  3880. "arrow-ipc",
  3881. "arrow-schema",
  3882. "async-trait",
  3883. "bytes",
  3884. "chrono",
  3885. "futures",
  3886. "lance",
  3887. "lance-core",
  3888. "lance-index",
  3889. "lance-io",
  3890. "lance-namespace",
  3891. "lance-table",
  3892. "log",
  3893. "object_store",
  3894. "rand 0.9.5",
  3895. "serde_json",
  3896. "snafu 0.9.2",
  3897. "tokio",
  3898. "url",
  3899. ]
  3900. [[package]]
  3901. name = "lance-namespace-reqwest-client"
  3902. version = "0.6.1"
  3903. source = "registry+https://github.com/rust-lang/crates.io-index"
  3904. checksum = "ee2e48de899e2931afb67fcddd0a08e439bf5d8b6ea2a2ed9cb8f4df669bd5cc"
  3905. dependencies = [
  3906. "reqwest 0.12.28",
  3907. "serde",
  3908. "serde_json",
  3909. "serde_repr",
  3910. "url",
  3911. ]
  3912. [[package]]
  3913. name = "lance-table"
  3914. version = "4.0.0"
  3915. source = "registry+https://github.com/rust-lang/crates.io-index"
  3916. checksum = "3df9c4adca3eb2074b3850432a9fb34248a3d90c3d6427d158b13ff9355664ee"
  3917. dependencies = [
  3918. "arrow",
  3919. "arrow-array",
  3920. "arrow-buffer",
  3921. "arrow-ipc",
  3922. "arrow-schema",
  3923. "async-trait",
  3924. "byteorder",
  3925. "bytes",
  3926. "chrono",
  3927. "deepsize",
  3928. "futures",
  3929. "lance-arrow",
  3930. "lance-core",
  3931. "lance-file",
  3932. "lance-io",
  3933. "log",
  3934. "object_store",
  3935. "prost",
  3936. "prost-build",
  3937. "prost-types",
  3938. "rand 0.9.5",
  3939. "rangemap",
  3940. "roaring",
  3941. "semver",
  3942. "serde",
  3943. "serde_json",
  3944. "snafu 0.9.2",
  3945. "tokio",
  3946. "tracing",
  3947. "url",
  3948. "uuid",
  3949. ]
  3950. [[package]]
  3951. name = "lance-testing"
  3952. version = "4.0.0"
  3953. source = "registry+https://github.com/rust-lang/crates.io-index"
  3954. checksum = "7ed7119bdd6983718387b4ac44af873a165262ca94f181b104cd6f97912eb3bf"
  3955. dependencies = [
  3956. "arrow-array",
  3957. "arrow-schema",
  3958. "lance-arrow",
  3959. "num-traits",
  3960. "rand 0.9.5",
  3961. ]
  3962. [[package]]
  3963. name = "lancedb"
  3964. version = "0.27.2"
  3965. source = "registry+https://github.com/rust-lang/crates.io-index"
  3966. checksum = "ce0f4d7f739dc30608fe8b202cbb40986c2937e1a5a189f98fb06d7b8543156a"
  3967. dependencies = [
  3968. "ahash",
  3969. "arrow",
  3970. "arrow-array",
  3971. "arrow-cast",
  3972. "arrow-data",
  3973. "arrow-ipc",
  3974. "arrow-ord",
  3975. "arrow-schema",
  3976. "arrow-select",
  3977. "async-trait",
  3978. "bytes",
  3979. "chrono",
  3980. "datafusion",
  3981. "datafusion-catalog",
  3982. "datafusion-common",
  3983. "datafusion-execution",
  3984. "datafusion-expr",
  3985. "datafusion-functions",
  3986. "datafusion-physical-expr",
  3987. "datafusion-physical-plan",
  3988. "datafusion-sql",
  3989. "futures",
  3990. "half",
  3991. "lance",
  3992. "lance-arrow",
  3993. "lance-core",
  3994. "lance-datafusion",
  3995. "lance-datagen",
  3996. "lance-encoding",
  3997. "lance-file",
  3998. "lance-index",
  3999. "lance-io",
  4000. "lance-linalg",
  4001. "lance-namespace",
  4002. "lance-namespace-impls",
  4003. "lance-table",
  4004. "lance-testing",
  4005. "lazy_static",
  4006. "log",
  4007. "moka",
  4008. "num-traits",
  4009. "object_store",
  4010. "pin-project",
  4011. "rand 0.9.5",
  4012. "regex",
  4013. "semver",
  4014. "serde",
  4015. "serde_json",
  4016. "serde_with",
  4017. "snafu 0.8.9",
  4018. "tempfile",
  4019. "tokio",
  4020. "url",
  4021. "uuid",
  4022. ]
  4023. [[package]]
  4024. name = "lazy_static"
  4025. version = "1.5.0"
  4026. source = "registry+https://github.com/rust-lang/crates.io-index"
  4027. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  4028. [[package]]
  4029. name = "levenshtein_automata"
  4030. version = "0.2.1"
  4031. source = "registry+https://github.com/rust-lang/crates.io-index"
  4032. checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
  4033. [[package]]
  4034. name = "lexical-core"
  4035. version = "1.0.6"
  4036. source = "registry+https://github.com/rust-lang/crates.io-index"
  4037. checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
  4038. dependencies = [
  4039. "lexical-parse-float",
  4040. "lexical-parse-integer",
  4041. "lexical-util",
  4042. "lexical-write-float",
  4043. "lexical-write-integer",
  4044. ]
  4045. [[package]]
  4046. name = "lexical-parse-float"
  4047. version = "1.0.6"
  4048. source = "registry+https://github.com/rust-lang/crates.io-index"
  4049. checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
  4050. dependencies = [
  4051. "lexical-parse-integer",
  4052. "lexical-util",
  4053. ]
  4054. [[package]]
  4055. name = "lexical-parse-integer"
  4056. version = "1.0.6"
  4057. source = "registry+https://github.com/rust-lang/crates.io-index"
  4058. checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
  4059. dependencies = [
  4060. "lexical-util",
  4061. ]
  4062. [[package]]
  4063. name = "lexical-util"
  4064. version = "1.0.7"
  4065. source = "registry+https://github.com/rust-lang/crates.io-index"
  4066. checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
  4067. [[package]]
  4068. name = "lexical-write-float"
  4069. version = "1.0.6"
  4070. source = "registry+https://github.com/rust-lang/crates.io-index"
  4071. checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
  4072. dependencies = [
  4073. "lexical-util",
  4074. "lexical-write-integer",
  4075. ]
  4076. [[package]]
  4077. name = "lexical-write-integer"
  4078. version = "1.0.6"
  4079. source = "registry+https://github.com/rust-lang/crates.io-index"
  4080. checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
  4081. dependencies = [
  4082. "lexical-util",
  4083. ]
  4084. [[package]]
  4085. name = "libappindicator"
  4086. version = "0.9.0"
  4087. source = "registry+https://github.com/rust-lang/crates.io-index"
  4088. checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a"
  4089. dependencies = [
  4090. "glib",
  4091. "gtk",
  4092. "gtk-sys",
  4093. "libappindicator-sys",
  4094. "log",
  4095. ]
  4096. [[package]]
  4097. name = "libappindicator-sys"
  4098. version = "0.9.0"
  4099. source = "registry+https://github.com/rust-lang/crates.io-index"
  4100. checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf"
  4101. dependencies = [
  4102. "gtk-sys",
  4103. "libloading",
  4104. "once_cell",
  4105. ]
  4106. [[package]]
  4107. name = "libc"
  4108. version = "0.2.189"
  4109. source = "registry+https://github.com/rust-lang/crates.io-index"
  4110. checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
  4111. [[package]]
  4112. name = "libdbus-sys"
  4113. version = "0.2.7"
  4114. source = "registry+https://github.com/rust-lang/crates.io-index"
  4115. checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043"
  4116. dependencies = [
  4117. "pkg-config",
  4118. ]
  4119. [[package]]
  4120. name = "libloading"
  4121. version = "0.7.4"
  4122. source = "registry+https://github.com/rust-lang/crates.io-index"
  4123. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  4124. dependencies = [
  4125. "cfg-if",
  4126. "winapi",
  4127. ]
  4128. [[package]]
  4129. name = "libm"
  4130. version = "0.2.16"
  4131. source = "registry+https://github.com/rust-lang/crates.io-index"
  4132. checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
  4133. [[package]]
  4134. name = "libredox"
  4135. version = "0.1.19"
  4136. source = "registry+https://github.com/rust-lang/crates.io-index"
  4137. checksum = "2026a5056764a10b2bf5d56488cba40da507f5493a6a429340e2004d9ed085fa"
  4138. dependencies = [
  4139. "libc",
  4140. ]
  4141. [[package]]
  4142. name = "linux-raw-sys"
  4143. version = "0.4.15"
  4144. source = "registry+https://github.com/rust-lang/crates.io-index"
  4145. checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
  4146. [[package]]
  4147. name = "linux-raw-sys"
  4148. version = "0.12.1"
  4149. source = "registry+https://github.com/rust-lang/crates.io-index"
  4150. checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
  4151. [[package]]
  4152. name = "litemap"
  4153. version = "0.8.3"
  4154. source = "registry+https://github.com/rust-lang/crates.io-index"
  4155. checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
  4156. [[package]]
  4157. name = "litrs"
  4158. version = "1.0.0"
  4159. source = "registry+https://github.com/rust-lang/crates.io-index"
  4160. checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
  4161. [[package]]
  4162. name = "lock_api"
  4163. version = "0.4.14"
  4164. source = "registry+https://github.com/rust-lang/crates.io-index"
  4165. checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
  4166. dependencies = [
  4167. "scopeguard",
  4168. ]
  4169. [[package]]
  4170. name = "log"
  4171. version = "0.4.33"
  4172. source = "registry+https://github.com/rust-lang/crates.io-index"
  4173. checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
  4174. [[package]]
  4175. name = "loom"
  4176. version = "0.7.2"
  4177. source = "registry+https://github.com/rust-lang/crates.io-index"
  4178. checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
  4179. dependencies = [
  4180. "cfg-if",
  4181. "generator",
  4182. "scoped-tls",
  4183. "tracing",
  4184. "tracing-subscriber",
  4185. ]
  4186. [[package]]
  4187. name = "lru"
  4188. version = "0.12.5"
  4189. source = "registry+https://github.com/rust-lang/crates.io-index"
  4190. checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
  4191. dependencies = [
  4192. "hashbrown 0.15.5",
  4193. ]
  4194. [[package]]
  4195. name = "lru-slab"
  4196. version = "0.1.2"
  4197. source = "registry+https://github.com/rust-lang/crates.io-index"
  4198. checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
  4199. [[package]]
  4200. name = "lz4"
  4201. version = "1.28.1"
  4202. source = "registry+https://github.com/rust-lang/crates.io-index"
  4203. checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
  4204. dependencies = [
  4205. "lz4-sys",
  4206. ]
  4207. [[package]]
  4208. name = "lz4-sys"
  4209. version = "1.11.1+lz4-1.10.0"
  4210. source = "registry+https://github.com/rust-lang/crates.io-index"
  4211. checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
  4212. dependencies = [
  4213. "cc",
  4214. "libc",
  4215. ]
  4216. [[package]]
  4217. name = "lz4_flex"
  4218. version = "0.11.6"
  4219. source = "registry+https://github.com/rust-lang/crates.io-index"
  4220. checksum = "373f5eceeeab7925e0c1098212f2fbc4d416adec9d35051a6ab251e824c1854a"
  4221. [[package]]
  4222. name = "lz4_flex"
  4223. version = "0.12.2"
  4224. source = "registry+https://github.com/rust-lang/crates.io-index"
  4225. checksum = "90071f8077f8e40adfc4b7fe9cd495ce316263f19e75c2211eeff3fdf475a3d9"
  4226. dependencies = [
  4227. "twox-hash",
  4228. ]
  4229. [[package]]
  4230. name = "lzma-rs"
  4231. version = "0.3.0"
  4232. source = "registry+https://github.com/rust-lang/crates.io-index"
  4233. checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
  4234. dependencies = [
  4235. "byteorder",
  4236. "crc",
  4237. ]
  4238. [[package]]
  4239. name = "lzma-sys"
  4240. version = "0.1.20"
  4241. source = "registry+https://github.com/rust-lang/crates.io-index"
  4242. checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
  4243. dependencies = [
  4244. "cc",
  4245. "libc",
  4246. "pkg-config",
  4247. ]
  4248. [[package]]
  4249. name = "mac-notification-sys"
  4250. version = "0.6.15"
  4251. source = "registry+https://github.com/rust-lang/crates.io-index"
  4252. checksum = "fd604973958ddcc11b561193c0fb96ba146506ef2f231ef2e7c35fd2cbc9beca"
  4253. dependencies = [
  4254. "cc",
  4255. "log",
  4256. "objc2",
  4257. "objc2-foundation",
  4258. "time",
  4259. "uuid",
  4260. ]
  4261. [[package]]
  4262. name = "markup5ever"
  4263. version = "0.38.0"
  4264. source = "registry+https://github.com/rust-lang/crates.io-index"
  4265. checksum = "8983d30f2915feeaaab2d6babdd6bc7e9ed1a00b66b5e6d74df19aa9c0e91862"
  4266. dependencies = [
  4267. "log",
  4268. "tendril",
  4269. "web_atoms",
  4270. ]
  4271. [[package]]
  4272. name = "matchers"
  4273. version = "0.2.0"
  4274. source = "registry+https://github.com/rust-lang/crates.io-index"
  4275. checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
  4276. dependencies = [
  4277. "regex-automata",
  4278. ]
  4279. [[package]]
  4280. name = "matrixmultiply"
  4281. version = "0.3.11"
  4282. source = "registry+https://github.com/rust-lang/crates.io-index"
  4283. checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
  4284. dependencies = [
  4285. "autocfg",
  4286. "num_cpus",
  4287. "once_cell",
  4288. "rawpointer",
  4289. "thread-tree",
  4290. ]
  4291. [[package]]
  4292. name = "md-5"
  4293. version = "0.10.6"
  4294. source = "registry+https://github.com/rust-lang/crates.io-index"
  4295. checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
  4296. dependencies = [
  4297. "cfg-if",
  4298. "digest",
  4299. ]
  4300. [[package]]
  4301. name = "measure_time"
  4302. version = "0.9.0"
  4303. source = "registry+https://github.com/rust-lang/crates.io-index"
  4304. checksum = "51c55d61e72fc3ab704396c5fa16f4c184db37978ae4e94ca8959693a235fc0e"
  4305. dependencies = [
  4306. "log",
  4307. ]
  4308. [[package]]
  4309. name = "memchr"
  4310. version = "2.8.3"
  4311. source = "registry+https://github.com/rust-lang/crates.io-index"
  4312. checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
  4313. [[package]]
  4314. name = "memmap2"
  4315. version = "0.9.11"
  4316. source = "registry+https://github.com/rust-lang/crates.io-index"
  4317. checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
  4318. dependencies = [
  4319. "libc",
  4320. ]
  4321. [[package]]
  4322. name = "memoffset"
  4323. version = "0.9.1"
  4324. source = "registry+https://github.com/rust-lang/crates.io-index"
  4325. checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
  4326. dependencies = [
  4327. "autocfg",
  4328. ]
  4329. [[package]]
  4330. name = "mime"
  4331. version = "0.3.17"
  4332. source = "registry+https://github.com/rust-lang/crates.io-index"
  4333. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  4334. [[package]]
  4335. name = "mime_guess"
  4336. version = "2.0.5"
  4337. source = "registry+https://github.com/rust-lang/crates.io-index"
  4338. checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
  4339. dependencies = [
  4340. "mime",
  4341. "unicase",
  4342. ]
  4343. [[package]]
  4344. name = "minimal-lexical"
  4345. version = "0.2.1"
  4346. source = "registry+https://github.com/rust-lang/crates.io-index"
  4347. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  4348. [[package]]
  4349. name = "minisign-verify"
  4350. version = "0.2.5"
  4351. source = "registry+https://github.com/rust-lang/crates.io-index"
  4352. checksum = "22f9645cb765ea72b8111f36c522475d2daa0d22c957a9826437e97534bc4e9e"
  4353. [[package]]
  4354. name = "miniz_oxide"
  4355. version = "0.8.9"
  4356. source = "registry+https://github.com/rust-lang/crates.io-index"
  4357. checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
  4358. dependencies = [
  4359. "adler2",
  4360. "simd-adler32",
  4361. ]
  4362. [[package]]
  4363. name = "mio"
  4364. version = "1.2.2"
  4365. source = "registry+https://github.com/rust-lang/crates.io-index"
  4366. checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
  4367. dependencies = [
  4368. "libc",
  4369. "log",
  4370. "wasi",
  4371. "windows-sys 0.61.2",
  4372. ]
  4373. [[package]]
  4374. name = "mock_instant"
  4375. version = "0.6.1"
  4376. source = "registry+https://github.com/rust-lang/crates.io-index"
  4377. checksum = "9bb517913cfcfb9eeda59f36020269075a152701a01606c612f547e4890be399"
  4378. [[package]]
  4379. name = "moka"
  4380. version = "0.12.16"
  4381. source = "registry+https://github.com/rust-lang/crates.io-index"
  4382. checksum = "4293f18e7567a1caf3c584855554377025c65e0aa445344d04171f5ad63d19b9"
  4383. dependencies = [
  4384. "async-lock",
  4385. "crossbeam-channel",
  4386. "crossbeam-epoch",
  4387. "crossbeam-utils",
  4388. "equivalent",
  4389. "event-listener",
  4390. "futures-util",
  4391. "parking_lot",
  4392. "portable-atomic",
  4393. "smallvec",
  4394. "tagptr",
  4395. "uuid",
  4396. ]
  4397. [[package]]
  4398. name = "moxcms"
  4399. version = "0.8.1"
  4400. source = "registry+https://github.com/rust-lang/crates.io-index"
  4401. checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
  4402. dependencies = [
  4403. "num-traits",
  4404. "pxfm",
  4405. ]
  4406. [[package]]
  4407. name = "muda"
  4408. version = "0.19.3"
  4409. source = "registry+https://github.com/rust-lang/crates.io-index"
  4410. checksum = "1dd04e60bc0b07438a6771710ee1698f98f6ebbc7f89b61264af1563b8aeb878"
  4411. dependencies = [
  4412. "crossbeam-channel",
  4413. "dpi",
  4414. "gtk",
  4415. "keyboard-types",
  4416. "objc2",
  4417. "objc2-app-kit",
  4418. "objc2-core-foundation",
  4419. "objc2-foundation",
  4420. "once_cell",
  4421. "png 0.18.1",
  4422. "serde",
  4423. "thiserror 2.0.20",
  4424. "windows-sys 0.60.2",
  4425. ]
  4426. [[package]]
  4427. name = "multimap"
  4428. version = "0.10.1"
  4429. source = "registry+https://github.com/rust-lang/crates.io-index"
  4430. checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
  4431. [[package]]
  4432. name = "murmurhash32"
  4433. version = "0.3.1"
  4434. source = "registry+https://github.com/rust-lang/crates.io-index"
  4435. checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
  4436. [[package]]
  4437. name = "ndarray"
  4438. version = "0.16.1"
  4439. source = "registry+https://github.com/rust-lang/crates.io-index"
  4440. checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
  4441. dependencies = [
  4442. "matrixmultiply",
  4443. "num-complex",
  4444. "num-integer",
  4445. "num-traits",
  4446. "portable-atomic",
  4447. "portable-atomic-util",
  4448. "rawpointer",
  4449. ]
  4450. [[package]]
  4451. name = "ndk"
  4452. version = "0.9.0"
  4453. source = "registry+https://github.com/rust-lang/crates.io-index"
  4454. checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
  4455. dependencies = [
  4456. "bitflags 2.13.1",
  4457. "jni-sys 0.3.1",
  4458. "log",
  4459. "ndk-sys",
  4460. "num_enum",
  4461. "raw-window-handle",
  4462. "thiserror 1.0.69",
  4463. ]
  4464. [[package]]
  4465. name = "ndk-sys"
  4466. version = "0.6.0+11769913"
  4467. source = "registry+https://github.com/rust-lang/crates.io-index"
  4468. checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
  4469. dependencies = [
  4470. "jni-sys 0.3.1",
  4471. ]
  4472. [[package]]
  4473. name = "new_debug_unreachable"
  4474. version = "1.0.6"
  4475. source = "registry+https://github.com/rust-lang/crates.io-index"
  4476. checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
  4477. [[package]]
  4478. name = "nom"
  4479. version = "7.1.3"
  4480. source = "registry+https://github.com/rust-lang/crates.io-index"
  4481. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  4482. dependencies = [
  4483. "memchr",
  4484. "minimal-lexical",
  4485. ]
  4486. [[package]]
  4487. name = "nom"
  4488. version = "8.0.0"
  4489. source = "registry+https://github.com/rust-lang/crates.io-index"
  4490. checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
  4491. dependencies = [
  4492. "memchr",
  4493. ]
  4494. [[package]]
  4495. name = "notify"
  4496. version = "8.2.0"
  4497. source = "registry+https://github.com/rust-lang/crates.io-index"
  4498. checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
  4499. dependencies = [
  4500. "bitflags 2.13.1",
  4501. "fsevent-sys",
  4502. "inotify",
  4503. "kqueue",
  4504. "libc",
  4505. "log",
  4506. "mio",
  4507. "notify-types",
  4508. "walkdir",
  4509. "windows-sys 0.60.2",
  4510. ]
  4511. [[package]]
  4512. name = "notify-rust"
  4513. version = "4.18.0"
  4514. source = "registry+https://github.com/rust-lang/crates.io-index"
  4515. checksum = "c5b4c1b4f2aa9f25f63a7a49d3dd0ed567b3670da15330a66b29434be899b891"
  4516. dependencies = [
  4517. "futures-lite",
  4518. "log",
  4519. "mac-notification-sys",
  4520. "serde",
  4521. "tauri-winrt-notification",
  4522. "zbus",
  4523. ]
  4524. [[package]]
  4525. name = "notify-types"
  4526. version = "2.1.0"
  4527. source = "registry+https://github.com/rust-lang/crates.io-index"
  4528. checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
  4529. dependencies = [
  4530. "bitflags 2.13.1",
  4531. ]
  4532. [[package]]
  4533. name = "nu-ansi-term"
  4534. version = "0.50.3"
  4535. source = "registry+https://github.com/rust-lang/crates.io-index"
  4536. checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
  4537. dependencies = [
  4538. "windows-sys 0.60.2",
  4539. ]
  4540. [[package]]
  4541. name = "num-bigint"
  4542. version = "0.4.8"
  4543. source = "registry+https://github.com/rust-lang/crates.io-index"
  4544. checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
  4545. dependencies = [
  4546. "num-integer",
  4547. "num-traits",
  4548. ]
  4549. [[package]]
  4550. name = "num-complex"
  4551. version = "0.4.6"
  4552. source = "registry+https://github.com/rust-lang/crates.io-index"
  4553. checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
  4554. dependencies = [
  4555. "num-traits",
  4556. ]
  4557. [[package]]
  4558. name = "num-conv"
  4559. version = "0.2.2"
  4560. source = "registry+https://github.com/rust-lang/crates.io-index"
  4561. checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
  4562. [[package]]
  4563. name = "num-integer"
  4564. version = "0.1.47"
  4565. source = "registry+https://github.com/rust-lang/crates.io-index"
  4566. checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
  4567. dependencies = [
  4568. "num-traits",
  4569. ]
  4570. [[package]]
  4571. name = "num-traits"
  4572. version = "0.2.19"
  4573. source = "registry+https://github.com/rust-lang/crates.io-index"
  4574. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  4575. dependencies = [
  4576. "autocfg",
  4577. "libm",
  4578. ]
  4579. [[package]]
  4580. name = "num_cpus"
  4581. version = "1.17.0"
  4582. source = "registry+https://github.com/rust-lang/crates.io-index"
  4583. checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
  4584. dependencies = [
  4585. "hermit-abi",
  4586. "libc",
  4587. ]
  4588. [[package]]
  4589. name = "num_enum"
  4590. version = "0.7.6"
  4591. source = "registry+https://github.com/rust-lang/crates.io-index"
  4592. checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
  4593. dependencies = [
  4594. "num_enum_derive",
  4595. "rustversion",
  4596. ]
  4597. [[package]]
  4598. name = "num_enum_derive"
  4599. version = "0.7.6"
  4600. source = "registry+https://github.com/rust-lang/crates.io-index"
  4601. checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
  4602. dependencies = [
  4603. "proc-macro-crate 3.5.0",
  4604. "proc-macro2",
  4605. "quote",
  4606. "syn 2.0.119",
  4607. ]
  4608. [[package]]
  4609. name = "objc2"
  4610. version = "0.6.4"
  4611. source = "registry+https://github.com/rust-lang/crates.io-index"
  4612. checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
  4613. dependencies = [
  4614. "objc2-encode",
  4615. "objc2-exception-helper",
  4616. ]
  4617. [[package]]
  4618. name = "objc2-app-kit"
  4619. version = "0.3.2"
  4620. source = "registry+https://github.com/rust-lang/crates.io-index"
  4621. checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
  4622. dependencies = [
  4623. "bitflags 2.13.1",
  4624. "block2",
  4625. "objc2",
  4626. "objc2-core-foundation",
  4627. "objc2-foundation",
  4628. ]
  4629. [[package]]
  4630. name = "objc2-cloud-kit"
  4631. version = "0.3.2"
  4632. source = "registry+https://github.com/rust-lang/crates.io-index"
  4633. checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
  4634. dependencies = [
  4635. "bitflags 2.13.1",
  4636. "objc2",
  4637. "objc2-foundation",
  4638. ]
  4639. [[package]]
  4640. name = "objc2-core-data"
  4641. version = "0.3.2"
  4642. source = "registry+https://github.com/rust-lang/crates.io-index"
  4643. checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
  4644. dependencies = [
  4645. "objc2",
  4646. "objc2-foundation",
  4647. ]
  4648. [[package]]
  4649. name = "objc2-core-foundation"
  4650. version = "0.3.2"
  4651. source = "registry+https://github.com/rust-lang/crates.io-index"
  4652. checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
  4653. dependencies = [
  4654. "bitflags 2.13.1",
  4655. "block2",
  4656. "dispatch2",
  4657. "libc",
  4658. "objc2",
  4659. ]
  4660. [[package]]
  4661. name = "objc2-core-graphics"
  4662. version = "0.3.2"
  4663. source = "registry+https://github.com/rust-lang/crates.io-index"
  4664. checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
  4665. dependencies = [
  4666. "bitflags 2.13.1",
  4667. "dispatch2",
  4668. "objc2",
  4669. "objc2-core-foundation",
  4670. "objc2-io-surface",
  4671. ]
  4672. [[package]]
  4673. name = "objc2-core-image"
  4674. version = "0.3.2"
  4675. source = "registry+https://github.com/rust-lang/crates.io-index"
  4676. checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
  4677. dependencies = [
  4678. "objc2",
  4679. "objc2-foundation",
  4680. ]
  4681. [[package]]
  4682. name = "objc2-core-location"
  4683. version = "0.3.2"
  4684. source = "registry+https://github.com/rust-lang/crates.io-index"
  4685. checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009"
  4686. dependencies = [
  4687. "objc2",
  4688. "objc2-foundation",
  4689. ]
  4690. [[package]]
  4691. name = "objc2-core-text"
  4692. version = "0.3.2"
  4693. source = "registry+https://github.com/rust-lang/crates.io-index"
  4694. checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
  4695. dependencies = [
  4696. "bitflags 2.13.1",
  4697. "objc2",
  4698. "objc2-core-foundation",
  4699. "objc2-core-graphics",
  4700. ]
  4701. [[package]]
  4702. name = "objc2-encode"
  4703. version = "4.1.0"
  4704. source = "registry+https://github.com/rust-lang/crates.io-index"
  4705. checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
  4706. [[package]]
  4707. name = "objc2-exception-helper"
  4708. version = "0.1.1"
  4709. source = "registry+https://github.com/rust-lang/crates.io-index"
  4710. checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a"
  4711. dependencies = [
  4712. "cc",
  4713. ]
  4714. [[package]]
  4715. name = "objc2-foundation"
  4716. version = "0.3.2"
  4717. source = "registry+https://github.com/rust-lang/crates.io-index"
  4718. checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
  4719. dependencies = [
  4720. "bitflags 2.13.1",
  4721. "block2",
  4722. "libc",
  4723. "objc2",
  4724. "objc2-core-foundation",
  4725. ]
  4726. [[package]]
  4727. name = "objc2-io-kit"
  4728. version = "0.3.2"
  4729. source = "registry+https://github.com/rust-lang/crates.io-index"
  4730. checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15"
  4731. dependencies = [
  4732. "bitflags 2.13.1",
  4733. "block2",
  4734. "dispatch2",
  4735. "libc",
  4736. "objc2",
  4737. "objc2-core-foundation",
  4738. ]
  4739. [[package]]
  4740. name = "objc2-io-surface"
  4741. version = "0.3.2"
  4742. source = "registry+https://github.com/rust-lang/crates.io-index"
  4743. checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
  4744. dependencies = [
  4745. "bitflags 2.13.1",
  4746. "objc2",
  4747. "objc2-core-foundation",
  4748. ]
  4749. [[package]]
  4750. name = "objc2-osa-kit"
  4751. version = "0.3.2"
  4752. source = "registry+https://github.com/rust-lang/crates.io-index"
  4753. checksum = "f112d1746737b0da274ef79a23aac283376f335f4095a083a267a082f21db0c0"
  4754. dependencies = [
  4755. "bitflags 2.13.1",
  4756. "objc2",
  4757. "objc2-app-kit",
  4758. "objc2-foundation",
  4759. ]
  4760. [[package]]
  4761. name = "objc2-quartz-core"
  4762. version = "0.3.2"
  4763. source = "registry+https://github.com/rust-lang/crates.io-index"
  4764. checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
  4765. dependencies = [
  4766. "bitflags 2.13.1",
  4767. "objc2",
  4768. "objc2-core-foundation",
  4769. "objc2-foundation",
  4770. ]
  4771. [[package]]
  4772. name = "objc2-ui-kit"
  4773. version = "0.3.2"
  4774. source = "registry+https://github.com/rust-lang/crates.io-index"
  4775. checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
  4776. dependencies = [
  4777. "bitflags 2.13.1",
  4778. "block2",
  4779. "objc2",
  4780. "objc2-cloud-kit",
  4781. "objc2-core-data",
  4782. "objc2-core-foundation",
  4783. "objc2-core-graphics",
  4784. "objc2-core-image",
  4785. "objc2-core-location",
  4786. "objc2-core-text",
  4787. "objc2-foundation",
  4788. "objc2-quartz-core",
  4789. "objc2-user-notifications",
  4790. ]
  4791. [[package]]
  4792. name = "objc2-user-notifications"
  4793. version = "0.3.2"
  4794. source = "registry+https://github.com/rust-lang/crates.io-index"
  4795. checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e"
  4796. dependencies = [
  4797. "objc2",
  4798. "objc2-foundation",
  4799. ]
  4800. [[package]]
  4801. name = "objc2-web-kit"
  4802. version = "0.3.2"
  4803. source = "registry+https://github.com/rust-lang/crates.io-index"
  4804. checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f"
  4805. dependencies = [
  4806. "bitflags 2.13.1",
  4807. "block2",
  4808. "objc2",
  4809. "objc2-app-kit",
  4810. "objc2-core-foundation",
  4811. "objc2-foundation",
  4812. ]
  4813. [[package]]
  4814. name = "object_store"
  4815. version = "0.12.5"
  4816. source = "registry+https://github.com/rust-lang/crates.io-index"
  4817. checksum = "fbfbfff40aeccab00ec8a910b57ca8ecf4319b335c542f2edcd19dd25a1e2a00"
  4818. dependencies = [
  4819. "async-trait",
  4820. "bytes",
  4821. "chrono",
  4822. "futures",
  4823. "http",
  4824. "humantime",
  4825. "itertools 0.14.0",
  4826. "parking_lot",
  4827. "percent-encoding",
  4828. "thiserror 2.0.20",
  4829. "tokio",
  4830. "tracing",
  4831. "url",
  4832. "walkdir",
  4833. "wasm-bindgen-futures",
  4834. "web-time",
  4835. ]
  4836. [[package]]
  4837. name = "once_cell"
  4838. version = "1.21.4"
  4839. source = "registry+https://github.com/rust-lang/crates.io-index"
  4840. checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
  4841. [[package]]
  4842. name = "oneshot"
  4843. version = "0.1.13"
  4844. source = "registry+https://github.com/rust-lang/crates.io-index"
  4845. checksum = "269bca4c2591a28585d6bf10d9ed0332b7d76900a1b02bec41bdc3a2cdcda107"
  4846. [[package]]
  4847. name = "open"
  4848. version = "5.4.1"
  4849. source = "registry+https://github.com/rust-lang/crates.io-index"
  4850. checksum = "f9cfef937e9c486488c7e3d949ae31c0f1d06bdacd75b99c086cb35356e30408"
  4851. dependencies = [
  4852. "dunce",
  4853. "is-wsl",
  4854. "libc",
  4855. ]
  4856. [[package]]
  4857. name = "openssl-probe"
  4858. version = "0.2.1"
  4859. source = "registry+https://github.com/rust-lang/crates.io-index"
  4860. checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
  4861. [[package]]
  4862. name = "option-ext"
  4863. version = "0.2.0"
  4864. source = "registry+https://github.com/rust-lang/crates.io-index"
  4865. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  4866. [[package]]
  4867. name = "ordered-float"
  4868. version = "5.3.0"
  4869. source = "registry+https://github.com/rust-lang/crates.io-index"
  4870. checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
  4871. dependencies = [
  4872. "num-traits",
  4873. ]
  4874. [[package]]
  4875. name = "ordered-stream"
  4876. version = "0.2.0"
  4877. source = "registry+https://github.com/rust-lang/crates.io-index"
  4878. checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
  4879. dependencies = [
  4880. "futures-core",
  4881. "pin-project-lite",
  4882. ]
  4883. [[package]]
  4884. name = "osakit"
  4885. version = "0.3.1"
  4886. source = "registry+https://github.com/rust-lang/crates.io-index"
  4887. checksum = "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b"
  4888. dependencies = [
  4889. "objc2",
  4890. "objc2-foundation",
  4891. "objc2-osa-kit",
  4892. "serde",
  4893. "serde_json",
  4894. "thiserror 2.0.20",
  4895. ]
  4896. [[package]]
  4897. name = "ownedbytes"
  4898. version = "0.9.0"
  4899. source = "registry+https://github.com/rust-lang/crates.io-index"
  4900. checksum = "2fbd56f7631767e61784dc43f8580f403f4475bd4aaa4da003e6295e1bab4a7e"
  4901. dependencies = [
  4902. "stable_deref_trait",
  4903. ]
  4904. [[package]]
  4905. name = "pango"
  4906. version = "0.18.3"
  4907. source = "registry+https://github.com/rust-lang/crates.io-index"
  4908. checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
  4909. dependencies = [
  4910. "gio",
  4911. "glib",
  4912. "libc",
  4913. "once_cell",
  4914. "pango-sys",
  4915. ]
  4916. [[package]]
  4917. name = "pango-sys"
  4918. version = "0.18.0"
  4919. source = "registry+https://github.com/rust-lang/crates.io-index"
  4920. checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
  4921. dependencies = [
  4922. "glib-sys",
  4923. "gobject-sys",
  4924. "libc",
  4925. "system-deps",
  4926. ]
  4927. [[package]]
  4928. name = "parking"
  4929. version = "2.2.1"
  4930. source = "registry+https://github.com/rust-lang/crates.io-index"
  4931. checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
  4932. [[package]]
  4933. name = "parking_lot"
  4934. version = "0.12.5"
  4935. source = "registry+https://github.com/rust-lang/crates.io-index"
  4936. checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
  4937. dependencies = [
  4938. "lock_api",
  4939. "parking_lot_core",
  4940. ]
  4941. [[package]]
  4942. name = "parking_lot_core"
  4943. version = "0.9.12"
  4944. source = "registry+https://github.com/rust-lang/crates.io-index"
  4945. checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
  4946. dependencies = [
  4947. "cfg-if",
  4948. "libc",
  4949. "redox_syscall",
  4950. "smallvec",
  4951. "windows-link 0.2.1",
  4952. ]
  4953. [[package]]
  4954. name = "paste"
  4955. version = "1.0.15"
  4956. source = "registry+https://github.com/rust-lang/crates.io-index"
  4957. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  4958. [[package]]
  4959. name = "path_abs"
  4960. version = "0.5.1"
  4961. source = "registry+https://github.com/rust-lang/crates.io-index"
  4962. checksum = "05ef02f6342ac01d8a93b65f96db53fe68a92a15f41144f97fb00a9e669633c3"
  4963. dependencies = [
  4964. "serde",
  4965. "serde_derive",
  4966. "std_prelude",
  4967. "stfu8",
  4968. ]
  4969. [[package]]
  4970. name = "pbkdf2"
  4971. version = "0.12.2"
  4972. source = "registry+https://github.com/rust-lang/crates.io-index"
  4973. checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
  4974. dependencies = [
  4975. "digest",
  4976. "hmac",
  4977. ]
  4978. [[package]]
  4979. name = "percent-encoding"
  4980. version = "2.3.2"
  4981. source = "registry+https://github.com/rust-lang/crates.io-index"
  4982. checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
  4983. [[package]]
  4984. name = "permutation"
  4985. version = "0.4.1"
  4986. source = "registry+https://github.com/rust-lang/crates.io-index"
  4987. checksum = "df202b0b0f5b8e389955afd5f27b007b00fb948162953f1db9c70d2c7e3157d7"
  4988. [[package]]
  4989. name = "petgraph"
  4990. version = "0.8.3"
  4991. source = "registry+https://github.com/rust-lang/crates.io-index"
  4992. checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
  4993. dependencies = [
  4994. "fixedbitset",
  4995. "hashbrown 0.15.5",
  4996. "indexmap 2.14.0",
  4997. "serde",
  4998. ]
  4999. [[package]]
  5000. name = "phf"
  5001. version = "0.12.1"
  5002. source = "registry+https://github.com/rust-lang/crates.io-index"
  5003. checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
  5004. dependencies = [
  5005. "phf_shared 0.12.1",
  5006. ]
  5007. [[package]]
  5008. name = "phf"
  5009. version = "0.13.1"
  5010. source = "registry+https://github.com/rust-lang/crates.io-index"
  5011. checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
  5012. dependencies = [
  5013. "phf_macros",
  5014. "phf_shared 0.13.1",
  5015. "serde",
  5016. ]
  5017. [[package]]
  5018. name = "phf_codegen"
  5019. version = "0.13.1"
  5020. source = "registry+https://github.com/rust-lang/crates.io-index"
  5021. checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
  5022. dependencies = [
  5023. "phf_generator",
  5024. "phf_shared 0.13.1",
  5025. ]
  5026. [[package]]
  5027. name = "phf_generator"
  5028. version = "0.13.1"
  5029. source = "registry+https://github.com/rust-lang/crates.io-index"
  5030. checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
  5031. dependencies = [
  5032. "fastrand",
  5033. "phf_shared 0.13.1",
  5034. ]
  5035. [[package]]
  5036. name = "phf_macros"
  5037. version = "0.13.1"
  5038. source = "registry+https://github.com/rust-lang/crates.io-index"
  5039. checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
  5040. dependencies = [
  5041. "phf_generator",
  5042. "phf_shared 0.13.1",
  5043. "proc-macro2",
  5044. "quote",
  5045. "syn 2.0.119",
  5046. ]
  5047. [[package]]
  5048. name = "phf_shared"
  5049. version = "0.12.1"
  5050. source = "registry+https://github.com/rust-lang/crates.io-index"
  5051. checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
  5052. dependencies = [
  5053. "siphasher",
  5054. ]
  5055. [[package]]
  5056. name = "phf_shared"
  5057. version = "0.13.1"
  5058. source = "registry+https://github.com/rust-lang/crates.io-index"
  5059. checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
  5060. dependencies = [
  5061. "siphasher",
  5062. ]
  5063. [[package]]
  5064. name = "pin-project"
  5065. version = "1.1.13"
  5066. source = "registry+https://github.com/rust-lang/crates.io-index"
  5067. checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
  5068. dependencies = [
  5069. "pin-project-internal",
  5070. ]
  5071. [[package]]
  5072. name = "pin-project-internal"
  5073. version = "1.1.13"
  5074. source = "registry+https://github.com/rust-lang/crates.io-index"
  5075. checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
  5076. dependencies = [
  5077. "proc-macro2",
  5078. "quote",
  5079. "syn 2.0.119",
  5080. ]
  5081. [[package]]
  5082. name = "pin-project-lite"
  5083. version = "0.2.17"
  5084. source = "registry+https://github.com/rust-lang/crates.io-index"
  5085. checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
  5086. [[package]]
  5087. name = "piper"
  5088. version = "0.2.5"
  5089. source = "registry+https://github.com/rust-lang/crates.io-index"
  5090. checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
  5091. dependencies = [
  5092. "atomic-waker",
  5093. "fastrand",
  5094. "futures-io",
  5095. ]
  5096. [[package]]
  5097. name = "pkg-config"
  5098. version = "0.3.34"
  5099. source = "registry+https://github.com/rust-lang/crates.io-index"
  5100. checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
  5101. [[package]]
  5102. name = "plist"
  5103. version = "1.10.0"
  5104. source = "registry+https://github.com/rust-lang/crates.io-index"
  5105. checksum = "7da1d65da6dd5d1e44199ac0f58712d241c0f439f80adea8924d832384087f85"
  5106. dependencies = [
  5107. "base64 0.22.1",
  5108. "indexmap 2.14.0",
  5109. "quick-xml 0.41.0",
  5110. "serde",
  5111. "time",
  5112. ]
  5113. [[package]]
  5114. name = "png"
  5115. version = "0.17.16"
  5116. source = "registry+https://github.com/rust-lang/crates.io-index"
  5117. checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
  5118. dependencies = [
  5119. "bitflags 1.3.2",
  5120. "crc32fast",
  5121. "fdeflate",
  5122. "flate2",
  5123. "miniz_oxide",
  5124. ]
  5125. [[package]]
  5126. name = "png"
  5127. version = "0.18.1"
  5128. source = "registry+https://github.com/rust-lang/crates.io-index"
  5129. checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
  5130. dependencies = [
  5131. "bitflags 2.13.1",
  5132. "crc32fast",
  5133. "fdeflate",
  5134. "flate2",
  5135. "miniz_oxide",
  5136. ]
  5137. [[package]]
  5138. name = "polling"
  5139. version = "3.11.0"
  5140. source = "registry+https://github.com/rust-lang/crates.io-index"
  5141. checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
  5142. dependencies = [
  5143. "cfg-if",
  5144. "concurrent-queue",
  5145. "hermit-abi",
  5146. "pin-project-lite",
  5147. "rustix 1.1.4",
  5148. "windows-sys 0.61.2",
  5149. ]
  5150. [[package]]
  5151. name = "portable-atomic"
  5152. version = "1.15.0"
  5153. source = "registry+https://github.com/rust-lang/crates.io-index"
  5154. checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
  5155. [[package]]
  5156. name = "portable-atomic-util"
  5157. version = "0.2.7"
  5158. source = "registry+https://github.com/rust-lang/crates.io-index"
  5159. checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
  5160. dependencies = [
  5161. "portable-atomic",
  5162. ]
  5163. [[package]]
  5164. name = "potential_utf"
  5165. version = "0.1.6"
  5166. source = "registry+https://github.com/rust-lang/crates.io-index"
  5167. checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
  5168. dependencies = [
  5169. "zerovec",
  5170. ]
  5171. [[package]]
  5172. name = "powerfmt"
  5173. version = "0.2.0"
  5174. source = "registry+https://github.com/rust-lang/crates.io-index"
  5175. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  5176. [[package]]
  5177. name = "ppv-lite86"
  5178. version = "0.2.21"
  5179. source = "registry+https://github.com/rust-lang/crates.io-index"
  5180. checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
  5181. dependencies = [
  5182. "zerocopy",
  5183. ]
  5184. [[package]]
  5185. name = "precomputed-hash"
  5186. version = "0.1.1"
  5187. source = "registry+https://github.com/rust-lang/crates.io-index"
  5188. checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
  5189. [[package]]
  5190. name = "prettyplease"
  5191. version = "0.2.37"
  5192. source = "registry+https://github.com/rust-lang/crates.io-index"
  5193. checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
  5194. dependencies = [
  5195. "proc-macro2",
  5196. "syn 2.0.119",
  5197. ]
  5198. [[package]]
  5199. name = "proc-macro-crate"
  5200. version = "1.3.1"
  5201. source = "registry+https://github.com/rust-lang/crates.io-index"
  5202. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  5203. dependencies = [
  5204. "once_cell",
  5205. "toml_edit 0.19.15",
  5206. ]
  5207. [[package]]
  5208. name = "proc-macro-crate"
  5209. version = "2.0.2"
  5210. source = "registry+https://github.com/rust-lang/crates.io-index"
  5211. checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24"
  5212. dependencies = [
  5213. "toml_datetime 0.6.3",
  5214. "toml_edit 0.20.2",
  5215. ]
  5216. [[package]]
  5217. name = "proc-macro-crate"
  5218. version = "3.5.0"
  5219. source = "registry+https://github.com/rust-lang/crates.io-index"
  5220. checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
  5221. dependencies = [
  5222. "toml_edit 0.25.13+spec-1.1.0",
  5223. ]
  5224. [[package]]
  5225. name = "proc-macro-error"
  5226. version = "1.0.4"
  5227. source = "registry+https://github.com/rust-lang/crates.io-index"
  5228. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  5229. dependencies = [
  5230. "proc-macro-error-attr",
  5231. "proc-macro2",
  5232. "quote",
  5233. "syn 1.0.109",
  5234. "version_check",
  5235. ]
  5236. [[package]]
  5237. name = "proc-macro-error-attr"
  5238. version = "1.0.4"
  5239. source = "registry+https://github.com/rust-lang/crates.io-index"
  5240. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  5241. dependencies = [
  5242. "proc-macro2",
  5243. "quote",
  5244. "version_check",
  5245. ]
  5246. [[package]]
  5247. name = "proc-macro2"
  5248. version = "1.0.107"
  5249. source = "registry+https://github.com/rust-lang/crates.io-index"
  5250. checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
  5251. dependencies = [
  5252. "unicode-ident",
  5253. ]
  5254. [[package]]
  5255. name = "prost"
  5256. version = "0.14.4"
  5257. source = "registry+https://github.com/rust-lang/crates.io-index"
  5258. checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
  5259. dependencies = [
  5260. "bytes",
  5261. "prost-derive",
  5262. ]
  5263. [[package]]
  5264. name = "prost-build"
  5265. version = "0.14.4"
  5266. source = "registry+https://github.com/rust-lang/crates.io-index"
  5267. checksum = "03da047801ff44bb6a4d407d4860c05fd70bb81714e6b2f3812603d5b145b042"
  5268. dependencies = [
  5269. "heck 0.5.0",
  5270. "itertools 0.14.0",
  5271. "log",
  5272. "multimap",
  5273. "petgraph",
  5274. "prettyplease",
  5275. "prost",
  5276. "prost-types",
  5277. "regex",
  5278. "syn 2.0.119",
  5279. "tempfile",
  5280. ]
  5281. [[package]]
  5282. name = "prost-derive"
  5283. version = "0.14.4"
  5284. source = "registry+https://github.com/rust-lang/crates.io-index"
  5285. checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
  5286. dependencies = [
  5287. "anyhow",
  5288. "itertools 0.14.0",
  5289. "proc-macro2",
  5290. "quote",
  5291. "syn 2.0.119",
  5292. ]
  5293. [[package]]
  5294. name = "prost-types"
  5295. version = "0.14.4"
  5296. source = "registry+https://github.com/rust-lang/crates.io-index"
  5297. checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a"
  5298. dependencies = [
  5299. "prost",
  5300. ]
  5301. [[package]]
  5302. name = "psl-types"
  5303. version = "2.0.11"
  5304. source = "registry+https://github.com/rust-lang/crates.io-index"
  5305. checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
  5306. [[package]]
  5307. name = "publicsuffix"
  5308. version = "2.3.0"
  5309. source = "registry+https://github.com/rust-lang/crates.io-index"
  5310. checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
  5311. dependencies = [
  5312. "idna",
  5313. "psl-types",
  5314. ]
  5315. [[package]]
  5316. name = "pxfm"
  5317. version = "0.1.30"
  5318. source = "registry+https://github.com/rust-lang/crates.io-index"
  5319. checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea"
  5320. [[package]]
  5321. name = "qmai"
  5322. version = "3.2.13"
  5323. dependencies = [
  5324. "arrow-array",
  5325. "arrow-schema",
  5326. "base64 0.22.1",
  5327. "calamine",
  5328. "cfb",
  5329. "chrono",
  5330. "docx-rs",
  5331. "encoding_rs",
  5332. "futures",
  5333. "image",
  5334. "keepawake",
  5335. "lancedb",
  5336. "md-5",
  5337. "notify",
  5338. "objc2",
  5339. "objc2-foundation",
  5340. "serde",
  5341. "serde_json",
  5342. "sha2",
  5343. "tauri",
  5344. "tauri-build",
  5345. "tauri-plugin-dialog",
  5346. "tauri-plugin-http",
  5347. "tauri-plugin-notification",
  5348. "tauri-plugin-opener",
  5349. "tauri-plugin-single-instance",
  5350. "tauri-plugin-store",
  5351. "tauri-plugin-updater",
  5352. "tokio",
  5353. "toml 0.8.2",
  5354. "uuid",
  5355. "walkdir",
  5356. "which",
  5357. "zip 2.4.2",
  5358. ]
  5359. [[package]]
  5360. name = "quick-error"
  5361. version = "2.0.1"
  5362. source = "registry+https://github.com/rust-lang/crates.io-index"
  5363. checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
  5364. [[package]]
  5365. name = "quick-xml"
  5366. version = "0.39.4"
  5367. source = "registry+https://github.com/rust-lang/crates.io-index"
  5368. checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
  5369. dependencies = [
  5370. "encoding_rs",
  5371. "memchr",
  5372. ]
  5373. [[package]]
  5374. name = "quick-xml"
  5375. version = "0.41.0"
  5376. source = "registry+https://github.com/rust-lang/crates.io-index"
  5377. checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
  5378. dependencies = [
  5379. "encoding_rs",
  5380. "memchr",
  5381. ]
  5382. [[package]]
  5383. name = "quinn"
  5384. version = "0.11.11"
  5385. source = "registry+https://github.com/rust-lang/crates.io-index"
  5386. checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
  5387. dependencies = [
  5388. "bytes",
  5389. "cfg_aliases",
  5390. "pin-project-lite",
  5391. "quinn-proto",
  5392. "quinn-udp",
  5393. "rustc-hash",
  5394. "rustls",
  5395. "socket2",
  5396. "thiserror 2.0.20",
  5397. "tokio",
  5398. "tracing",
  5399. "web-time",
  5400. ]
  5401. [[package]]
  5402. name = "quinn-proto"
  5403. version = "0.11.16"
  5404. source = "registry+https://github.com/rust-lang/crates.io-index"
  5405. checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
  5406. dependencies = [
  5407. "bytes",
  5408. "getrandom 0.4.3",
  5409. "lru-slab",
  5410. "rand 0.10.2",
  5411. "rand_pcg",
  5412. "ring",
  5413. "rustc-hash",
  5414. "rustls",
  5415. "rustls-pki-types",
  5416. "slab",
  5417. "thiserror 2.0.20",
  5418. "tinyvec",
  5419. "tracing",
  5420. "web-time",
  5421. ]
  5422. [[package]]
  5423. name = "quinn-udp"
  5424. version = "0.5.15"
  5425. source = "registry+https://github.com/rust-lang/crates.io-index"
  5426. checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
  5427. dependencies = [
  5428. "cfg_aliases",
  5429. "libc",
  5430. "once_cell",
  5431. "socket2",
  5432. "tracing",
  5433. "windows-sys 0.60.2",
  5434. ]
  5435. [[package]]
  5436. name = "quote"
  5437. version = "1.0.47"
  5438. source = "registry+https://github.com/rust-lang/crates.io-index"
  5439. checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
  5440. dependencies = [
  5441. "proc-macro2",
  5442. ]
  5443. [[package]]
  5444. name = "r-efi"
  5445. version = "5.3.0"
  5446. source = "registry+https://github.com/rust-lang/crates.io-index"
  5447. checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
  5448. [[package]]
  5449. name = "r-efi"
  5450. version = "6.0.0"
  5451. source = "registry+https://github.com/rust-lang/crates.io-index"
  5452. checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
  5453. [[package]]
  5454. name = "radium"
  5455. version = "0.7.0"
  5456. source = "registry+https://github.com/rust-lang/crates.io-index"
  5457. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  5458. [[package]]
  5459. name = "rand"
  5460. version = "0.8.7"
  5461. source = "registry+https://github.com/rust-lang/crates.io-index"
  5462. checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
  5463. dependencies = [
  5464. "libc",
  5465. "rand_chacha 0.3.1",
  5466. "rand_core 0.6.4",
  5467. ]
  5468. [[package]]
  5469. name = "rand"
  5470. version = "0.9.5"
  5471. source = "registry+https://github.com/rust-lang/crates.io-index"
  5472. checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
  5473. dependencies = [
  5474. "rand_chacha 0.9.0",
  5475. "rand_core 0.9.5",
  5476. ]
  5477. [[package]]
  5478. name = "rand"
  5479. version = "0.10.2"
  5480. source = "registry+https://github.com/rust-lang/crates.io-index"
  5481. checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
  5482. dependencies = [
  5483. "chacha20",
  5484. "getrandom 0.4.3",
  5485. "rand_core 0.10.1",
  5486. ]
  5487. [[package]]
  5488. name = "rand_chacha"
  5489. version = "0.3.1"
  5490. source = "registry+https://github.com/rust-lang/crates.io-index"
  5491. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  5492. dependencies = [
  5493. "ppv-lite86",
  5494. "rand_core 0.6.4",
  5495. ]
  5496. [[package]]
  5497. name = "rand_chacha"
  5498. version = "0.9.0"
  5499. source = "registry+https://github.com/rust-lang/crates.io-index"
  5500. checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
  5501. dependencies = [
  5502. "ppv-lite86",
  5503. "rand_core 0.9.5",
  5504. ]
  5505. [[package]]
  5506. name = "rand_core"
  5507. version = "0.6.4"
  5508. source = "registry+https://github.com/rust-lang/crates.io-index"
  5509. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  5510. dependencies = [
  5511. "getrandom 0.2.17",
  5512. ]
  5513. [[package]]
  5514. name = "rand_core"
  5515. version = "0.9.5"
  5516. source = "registry+https://github.com/rust-lang/crates.io-index"
  5517. checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
  5518. dependencies = [
  5519. "getrandom 0.3.4",
  5520. ]
  5521. [[package]]
  5522. name = "rand_core"
  5523. version = "0.10.1"
  5524. source = "registry+https://github.com/rust-lang/crates.io-index"
  5525. checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
  5526. [[package]]
  5527. name = "rand_distr"
  5528. version = "0.4.3"
  5529. source = "registry+https://github.com/rust-lang/crates.io-index"
  5530. checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
  5531. dependencies = [
  5532. "num-traits",
  5533. "rand 0.8.7",
  5534. ]
  5535. [[package]]
  5536. name = "rand_distr"
  5537. version = "0.5.1"
  5538. source = "registry+https://github.com/rust-lang/crates.io-index"
  5539. checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
  5540. dependencies = [
  5541. "num-traits",
  5542. "rand 0.9.5",
  5543. ]
  5544. [[package]]
  5545. name = "rand_pcg"
  5546. version = "0.10.2"
  5547. source = "registry+https://github.com/rust-lang/crates.io-index"
  5548. checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
  5549. dependencies = [
  5550. "rand_core 0.10.1",
  5551. ]
  5552. [[package]]
  5553. name = "rand_xoshiro"
  5554. version = "0.7.0"
  5555. source = "registry+https://github.com/rust-lang/crates.io-index"
  5556. checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41"
  5557. dependencies = [
  5558. "rand_core 0.9.5",
  5559. ]
  5560. [[package]]
  5561. name = "random_word"
  5562. version = "0.5.2"
  5563. source = "registry+https://github.com/rust-lang/crates.io-index"
  5564. checksum = "e47a395bdb55442b883c89062d6bcff25dc90fa5f8369af81e0ac6d49d78cf81"
  5565. dependencies = [
  5566. "ahash",
  5567. "brotli",
  5568. "paste",
  5569. "rand 0.9.5",
  5570. "unicase",
  5571. ]
  5572. [[package]]
  5573. name = "rangemap"
  5574. version = "1.8.0"
  5575. source = "registry+https://github.com/rust-lang/crates.io-index"
  5576. checksum = "a611d15b50743feb4c76b7d03edcb0e64f399c26961e4efe6975bc398be6aa3d"
  5577. [[package]]
  5578. name = "raw-window-handle"
  5579. version = "0.6.2"
  5580. source = "registry+https://github.com/rust-lang/crates.io-index"
  5581. checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
  5582. [[package]]
  5583. name = "rawpointer"
  5584. version = "0.2.1"
  5585. source = "registry+https://github.com/rust-lang/crates.io-index"
  5586. checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
  5587. [[package]]
  5588. name = "rayon"
  5589. version = "1.12.0"
  5590. source = "registry+https://github.com/rust-lang/crates.io-index"
  5591. checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
  5592. dependencies = [
  5593. "either",
  5594. "rayon-core",
  5595. ]
  5596. [[package]]
  5597. name = "rayon-core"
  5598. version = "1.13.0"
  5599. source = "registry+https://github.com/rust-lang/crates.io-index"
  5600. checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
  5601. dependencies = [
  5602. "crossbeam-deque",
  5603. "crossbeam-utils",
  5604. ]
  5605. [[package]]
  5606. name = "redox_syscall"
  5607. version = "0.5.18"
  5608. source = "registry+https://github.com/rust-lang/crates.io-index"
  5609. checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
  5610. dependencies = [
  5611. "bitflags 2.13.1",
  5612. ]
  5613. [[package]]
  5614. name = "redox_users"
  5615. version = "0.5.2"
  5616. source = "registry+https://github.com/rust-lang/crates.io-index"
  5617. checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
  5618. dependencies = [
  5619. "getrandom 0.2.17",
  5620. "libredox",
  5621. "thiserror 2.0.20",
  5622. ]
  5623. [[package]]
  5624. name = "ref-cast"
  5625. version = "1.0.26"
  5626. source = "registry+https://github.com/rust-lang/crates.io-index"
  5627. checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
  5628. dependencies = [
  5629. "ref-cast-impl",
  5630. ]
  5631. [[package]]
  5632. name = "ref-cast-impl"
  5633. version = "1.0.26"
  5634. source = "registry+https://github.com/rust-lang/crates.io-index"
  5635. checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
  5636. dependencies = [
  5637. "proc-macro2",
  5638. "quote",
  5639. "syn 3.0.3",
  5640. ]
  5641. [[package]]
  5642. name = "regex"
  5643. version = "1.13.1"
  5644. source = "registry+https://github.com/rust-lang/crates.io-index"
  5645. checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
  5646. dependencies = [
  5647. "aho-corasick",
  5648. "memchr",
  5649. "regex-automata",
  5650. "regex-syntax",
  5651. ]
  5652. [[package]]
  5653. name = "regex-automata"
  5654. version = "0.4.18"
  5655. source = "registry+https://github.com/rust-lang/crates.io-index"
  5656. checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
  5657. dependencies = [
  5658. "aho-corasick",
  5659. "memchr",
  5660. "regex-syntax",
  5661. ]
  5662. [[package]]
  5663. name = "regex-syntax"
  5664. version = "0.8.11"
  5665. source = "registry+https://github.com/rust-lang/crates.io-index"
  5666. checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
  5667. [[package]]
  5668. name = "reqwest"
  5669. version = "0.12.28"
  5670. source = "registry+https://github.com/rust-lang/crates.io-index"
  5671. checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
  5672. dependencies = [
  5673. "base64 0.22.1",
  5674. "bytes",
  5675. "cookie",
  5676. "cookie_store",
  5677. "encoding_rs",
  5678. "futures-core",
  5679. "futures-util",
  5680. "h2",
  5681. "http",
  5682. "http-body",
  5683. "http-body-util",
  5684. "hyper",
  5685. "hyper-rustls",
  5686. "hyper-util",
  5687. "js-sys",
  5688. "log",
  5689. "mime",
  5690. "mime_guess",
  5691. "percent-encoding",
  5692. "pin-project-lite",
  5693. "quinn",
  5694. "rustls",
  5695. "rustls-native-certs",
  5696. "rustls-pki-types",
  5697. "serde",
  5698. "serde_json",
  5699. "serde_urlencoded",
  5700. "sync_wrapper",
  5701. "tokio",
  5702. "tokio-rustls",
  5703. "tokio-util",
  5704. "tower",
  5705. "tower-http",
  5706. "tower-service",
  5707. "url",
  5708. "wasm-bindgen",
  5709. "wasm-bindgen-futures",
  5710. "wasm-streams 0.4.2",
  5711. "web-sys",
  5712. "webpki-roots",
  5713. ]
  5714. [[package]]
  5715. name = "reqwest"
  5716. version = "0.13.4"
  5717. source = "registry+https://github.com/rust-lang/crates.io-index"
  5718. checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
  5719. dependencies = [
  5720. "base64 0.22.1",
  5721. "bytes",
  5722. "futures-core",
  5723. "futures-util",
  5724. "http",
  5725. "http-body",
  5726. "http-body-util",
  5727. "hyper",
  5728. "hyper-rustls",
  5729. "hyper-util",
  5730. "js-sys",
  5731. "log",
  5732. "percent-encoding",
  5733. "pin-project-lite",
  5734. "rustls",
  5735. "rustls-pki-types",
  5736. "rustls-platform-verifier",
  5737. "serde",
  5738. "serde_json",
  5739. "sync_wrapper",
  5740. "tokio",
  5741. "tokio-rustls",
  5742. "tokio-util",
  5743. "tower",
  5744. "tower-http",
  5745. "tower-service",
  5746. "url",
  5747. "wasm-bindgen",
  5748. "wasm-bindgen-futures",
  5749. "wasm-streams 0.5.0",
  5750. "web-sys",
  5751. ]
  5752. [[package]]
  5753. name = "rfd"
  5754. version = "0.16.0"
  5755. source = "registry+https://github.com/rust-lang/crates.io-index"
  5756. checksum = "a15ad77d9e70a92437d8f74c35d99b4e4691128df018833e99f90bcd36152672"
  5757. dependencies = [
  5758. "block2",
  5759. "dispatch2",
  5760. "glib-sys",
  5761. "gobject-sys",
  5762. "gtk-sys",
  5763. "js-sys",
  5764. "log",
  5765. "objc2",
  5766. "objc2-app-kit",
  5767. "objc2-core-foundation",
  5768. "objc2-foundation",
  5769. "raw-window-handle",
  5770. "wasm-bindgen",
  5771. "wasm-bindgen-futures",
  5772. "web-sys",
  5773. "windows-sys 0.60.2",
  5774. ]
  5775. [[package]]
  5776. name = "ring"
  5777. version = "0.17.14"
  5778. source = "registry+https://github.com/rust-lang/crates.io-index"
  5779. checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
  5780. dependencies = [
  5781. "cc",
  5782. "cfg-if",
  5783. "getrandom 0.2.17",
  5784. "libc",
  5785. "untrusted",
  5786. "windows-sys 0.52.0",
  5787. ]
  5788. [[package]]
  5789. name = "roaring"
  5790. version = "0.11.5"
  5791. source = "registry+https://github.com/rust-lang/crates.io-index"
  5792. checksum = "18bd8a37d17a58532776dcdf6041ce64929adca78e8489d5cacbafe99229d3e1"
  5793. dependencies = [
  5794. "bytemuck",
  5795. "byteorder",
  5796. ]
  5797. [[package]]
  5798. name = "rust-stemmers"
  5799. version = "1.2.0"
  5800. source = "registry+https://github.com/rust-lang/crates.io-index"
  5801. checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
  5802. dependencies = [
  5803. "serde",
  5804. "serde_derive",
  5805. ]
  5806. [[package]]
  5807. name = "rustc-hash"
  5808. version = "2.1.3"
  5809. source = "registry+https://github.com/rust-lang/crates.io-index"
  5810. checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
  5811. [[package]]
  5812. name = "rustc_version"
  5813. version = "0.4.1"
  5814. source = "registry+https://github.com/rust-lang/crates.io-index"
  5815. checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
  5816. dependencies = [
  5817. "semver",
  5818. ]
  5819. [[package]]
  5820. name = "rustix"
  5821. version = "0.38.44"
  5822. source = "registry+https://github.com/rust-lang/crates.io-index"
  5823. checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
  5824. dependencies = [
  5825. "bitflags 2.13.1",
  5826. "errno",
  5827. "libc",
  5828. "linux-raw-sys 0.4.15",
  5829. "windows-sys 0.59.0",
  5830. ]
  5831. [[package]]
  5832. name = "rustix"
  5833. version = "1.1.4"
  5834. source = "registry+https://github.com/rust-lang/crates.io-index"
  5835. checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
  5836. dependencies = [
  5837. "bitflags 2.13.1",
  5838. "errno",
  5839. "libc",
  5840. "linux-raw-sys 0.12.1",
  5841. "windows-sys 0.60.2",
  5842. ]
  5843. [[package]]
  5844. name = "rustls"
  5845. version = "0.23.43"
  5846. source = "registry+https://github.com/rust-lang/crates.io-index"
  5847. checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
  5848. dependencies = [
  5849. "once_cell",
  5850. "ring",
  5851. "rustls-pki-types",
  5852. "rustls-webpki",
  5853. "subtle",
  5854. "zeroize",
  5855. ]
  5856. [[package]]
  5857. name = "rustls-native-certs"
  5858. version = "0.8.4"
  5859. source = "registry+https://github.com/rust-lang/crates.io-index"
  5860. checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
  5861. dependencies = [
  5862. "openssl-probe",
  5863. "rustls-pki-types",
  5864. "schannel",
  5865. "security-framework",
  5866. ]
  5867. [[package]]
  5868. name = "rustls-pki-types"
  5869. version = "1.15.1"
  5870. source = "registry+https://github.com/rust-lang/crates.io-index"
  5871. checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
  5872. dependencies = [
  5873. "web-time",
  5874. "zeroize",
  5875. ]
  5876. [[package]]
  5877. name = "rustls-platform-verifier"
  5878. version = "0.7.0"
  5879. source = "registry+https://github.com/rust-lang/crates.io-index"
  5880. checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
  5881. dependencies = [
  5882. "core-foundation 0.10.1",
  5883. "core-foundation-sys",
  5884. "jni 0.22.4",
  5885. "log",
  5886. "once_cell",
  5887. "rustls",
  5888. "rustls-native-certs",
  5889. "rustls-platform-verifier-android",
  5890. "rustls-webpki",
  5891. "security-framework",
  5892. "security-framework-sys",
  5893. "webpki-root-certs",
  5894. "windows-sys 0.60.2",
  5895. ]
  5896. [[package]]
  5897. name = "rustls-platform-verifier-android"
  5898. version = "0.1.1"
  5899. source = "registry+https://github.com/rust-lang/crates.io-index"
  5900. checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
  5901. [[package]]
  5902. name = "rustls-webpki"
  5903. version = "0.103.14"
  5904. source = "registry+https://github.com/rust-lang/crates.io-index"
  5905. checksum = "0527518605e68109d875e248ea259b6758801cf165e4b2c2733ae3b51f12535a"
  5906. dependencies = [
  5907. "ring",
  5908. "rustls-pki-types",
  5909. "untrusted",
  5910. ]
  5911. [[package]]
  5912. name = "rustversion"
  5913. version = "1.0.23"
  5914. source = "registry+https://github.com/rust-lang/crates.io-index"
  5915. checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
  5916. [[package]]
  5917. name = "ryu"
  5918. version = "1.0.23"
  5919. source = "registry+https://github.com/rust-lang/crates.io-index"
  5920. checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
  5921. [[package]]
  5922. name = "same-file"
  5923. version = "1.0.6"
  5924. source = "registry+https://github.com/rust-lang/crates.io-index"
  5925. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  5926. dependencies = [
  5927. "winapi-util",
  5928. ]
  5929. [[package]]
  5930. name = "schannel"
  5931. version = "0.1.29"
  5932. source = "registry+https://github.com/rust-lang/crates.io-index"
  5933. checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
  5934. dependencies = [
  5935. "windows-sys 0.61.2",
  5936. ]
  5937. [[package]]
  5938. name = "schemars"
  5939. version = "0.8.22"
  5940. source = "registry+https://github.com/rust-lang/crates.io-index"
  5941. checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
  5942. dependencies = [
  5943. "dyn-clone",
  5944. "indexmap 1.9.3",
  5945. "schemars_derive",
  5946. "serde",
  5947. "serde_json",
  5948. "url",
  5949. "uuid",
  5950. ]
  5951. [[package]]
  5952. name = "schemars"
  5953. version = "0.9.0"
  5954. source = "registry+https://github.com/rust-lang/crates.io-index"
  5955. checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
  5956. dependencies = [
  5957. "dyn-clone",
  5958. "ref-cast",
  5959. "serde",
  5960. "serde_json",
  5961. ]
  5962. [[package]]
  5963. name = "schemars"
  5964. version = "1.2.2"
  5965. source = "registry+https://github.com/rust-lang/crates.io-index"
  5966. checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
  5967. dependencies = [
  5968. "dyn-clone",
  5969. "ref-cast",
  5970. "serde",
  5971. "serde_json",
  5972. ]
  5973. [[package]]
  5974. name = "schemars_derive"
  5975. version = "0.8.22"
  5976. source = "registry+https://github.com/rust-lang/crates.io-index"
  5977. checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
  5978. dependencies = [
  5979. "proc-macro2",
  5980. "quote",
  5981. "serde_derive_internals",
  5982. "syn 2.0.119",
  5983. ]
  5984. [[package]]
  5985. name = "scoped-tls"
  5986. version = "1.0.1"
  5987. source = "registry+https://github.com/rust-lang/crates.io-index"
  5988. checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
  5989. [[package]]
  5990. name = "scopeguard"
  5991. version = "1.2.0"
  5992. source = "registry+https://github.com/rust-lang/crates.io-index"
  5993. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  5994. [[package]]
  5995. name = "security-framework"
  5996. version = "3.7.0"
  5997. source = "registry+https://github.com/rust-lang/crates.io-index"
  5998. checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
  5999. dependencies = [
  6000. "bitflags 2.13.1",
  6001. "core-foundation 0.10.1",
  6002. "core-foundation-sys",
  6003. "libc",
  6004. "security-framework-sys",
  6005. ]
  6006. [[package]]
  6007. name = "security-framework-sys"
  6008. version = "2.17.0"
  6009. source = "registry+https://github.com/rust-lang/crates.io-index"
  6010. checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
  6011. dependencies = [
  6012. "core-foundation-sys",
  6013. "libc",
  6014. ]
  6015. [[package]]
  6016. name = "selectors"
  6017. version = "0.36.1"
  6018. source = "registry+https://github.com/rust-lang/crates.io-index"
  6019. checksum = "c5d9c0c92a92d33f08817311cf3f2c29a3538a8240e94a6a3c622ce652d7e00c"
  6020. dependencies = [
  6021. "bitflags 2.13.1",
  6022. "cssparser",
  6023. "derive_more",
  6024. "log",
  6025. "new_debug_unreachable",
  6026. "phf 0.13.1",
  6027. "phf_codegen",
  6028. "precomputed-hash",
  6029. "rustc-hash",
  6030. "servo_arc",
  6031. "smallvec",
  6032. ]
  6033. [[package]]
  6034. name = "semver"
  6035. version = "1.0.28"
  6036. source = "registry+https://github.com/rust-lang/crates.io-index"
  6037. checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
  6038. dependencies = [
  6039. "serde",
  6040. "serde_core",
  6041. ]
  6042. [[package]]
  6043. name = "seq-macro"
  6044. version = "0.3.6"
  6045. source = "registry+https://github.com/rust-lang/crates.io-index"
  6046. checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
  6047. [[package]]
  6048. name = "serde"
  6049. version = "1.0.229"
  6050. source = "registry+https://github.com/rust-lang/crates.io-index"
  6051. checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
  6052. dependencies = [
  6053. "serde_core",
  6054. "serde_derive",
  6055. ]
  6056. [[package]]
  6057. name = "serde-untagged"
  6058. version = "0.1.9"
  6059. source = "registry+https://github.com/rust-lang/crates.io-index"
  6060. checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
  6061. dependencies = [
  6062. "erased-serde",
  6063. "serde",
  6064. "serde_core",
  6065. "typeid",
  6066. ]
  6067. [[package]]
  6068. name = "serde_core"
  6069. version = "1.0.229"
  6070. source = "registry+https://github.com/rust-lang/crates.io-index"
  6071. checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
  6072. dependencies = [
  6073. "serde_derive",
  6074. ]
  6075. [[package]]
  6076. name = "serde_derive"
  6077. version = "1.0.229"
  6078. source = "registry+https://github.com/rust-lang/crates.io-index"
  6079. checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
  6080. dependencies = [
  6081. "proc-macro2",
  6082. "quote",
  6083. "syn 3.0.3",
  6084. ]
  6085. [[package]]
  6086. name = "serde_derive_internals"
  6087. version = "0.29.1"
  6088. source = "registry+https://github.com/rust-lang/crates.io-index"
  6089. checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
  6090. dependencies = [
  6091. "proc-macro2",
  6092. "quote",
  6093. "syn 2.0.119",
  6094. ]
  6095. [[package]]
  6096. name = "serde_json"
  6097. version = "1.0.151"
  6098. source = "registry+https://github.com/rust-lang/crates.io-index"
  6099. checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
  6100. dependencies = [
  6101. "itoa",
  6102. "memchr",
  6103. "serde",
  6104. "serde_core",
  6105. "zmij",
  6106. ]
  6107. [[package]]
  6108. name = "serde_repr"
  6109. version = "0.1.21"
  6110. source = "registry+https://github.com/rust-lang/crates.io-index"
  6111. checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
  6112. dependencies = [
  6113. "proc-macro2",
  6114. "quote",
  6115. "syn 3.0.3",
  6116. ]
  6117. [[package]]
  6118. name = "serde_spanned"
  6119. version = "0.6.9"
  6120. source = "registry+https://github.com/rust-lang/crates.io-index"
  6121. checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
  6122. dependencies = [
  6123. "serde",
  6124. ]
  6125. [[package]]
  6126. name = "serde_spanned"
  6127. version = "1.1.1"
  6128. source = "registry+https://github.com/rust-lang/crates.io-index"
  6129. checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
  6130. dependencies = [
  6131. "serde_core",
  6132. ]
  6133. [[package]]
  6134. name = "serde_urlencoded"
  6135. version = "0.7.1"
  6136. source = "registry+https://github.com/rust-lang/crates.io-index"
  6137. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  6138. dependencies = [
  6139. "form_urlencoded",
  6140. "itoa",
  6141. "ryu",
  6142. "serde",
  6143. ]
  6144. [[package]]
  6145. name = "serde_with"
  6146. version = "3.22.0"
  6147. source = "registry+https://github.com/rust-lang/crates.io-index"
  6148. checksum = "ee78f1fbe43ac4a0e47aadb3dbd357b69eb0d3793e948624cd03dd2750ab1c0a"
  6149. dependencies = [
  6150. "base64 0.22.1",
  6151. "bs58",
  6152. "chrono",
  6153. "hex",
  6154. "indexmap 1.9.3",
  6155. "indexmap 2.14.0",
  6156. "jiff",
  6157. "schemars 0.9.0",
  6158. "schemars 1.2.2",
  6159. "serde_core",
  6160. "serde_json",
  6161. "serde_with_macros",
  6162. "time",
  6163. ]
  6164. [[package]]
  6165. name = "serde_with_macros"
  6166. version = "3.22.0"
  6167. source = "registry+https://github.com/rust-lang/crates.io-index"
  6168. checksum = "8705578779c2b6bd90d84d66eb2e206b708b1a4d7b9f17641b293545bf1c7e46"
  6169. dependencies = [
  6170. "darling 0.23.0",
  6171. "proc-macro2",
  6172. "quote",
  6173. "syn 2.0.119",
  6174. ]
  6175. [[package]]
  6176. name = "serialize-to-javascript"
  6177. version = "0.1.2"
  6178. source = "registry+https://github.com/rust-lang/crates.io-index"
  6179. checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5"
  6180. dependencies = [
  6181. "serde",
  6182. "serde_json",
  6183. "serialize-to-javascript-impl",
  6184. ]
  6185. [[package]]
  6186. name = "serialize-to-javascript-impl"
  6187. version = "0.1.2"
  6188. source = "registry+https://github.com/rust-lang/crates.io-index"
  6189. checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d"
  6190. dependencies = [
  6191. "proc-macro2",
  6192. "quote",
  6193. "syn 2.0.119",
  6194. ]
  6195. [[package]]
  6196. name = "servo_arc"
  6197. version = "0.4.3"
  6198. source = "registry+https://github.com/rust-lang/crates.io-index"
  6199. checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
  6200. dependencies = [
  6201. "stable_deref_trait",
  6202. ]
  6203. [[package]]
  6204. name = "sha1"
  6205. version = "0.10.7"
  6206. source = "registry+https://github.com/rust-lang/crates.io-index"
  6207. checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
  6208. dependencies = [
  6209. "cfg-if",
  6210. "cpufeatures 0.2.17",
  6211. "digest",
  6212. ]
  6213. [[package]]
  6214. name = "sha2"
  6215. version = "0.10.9"
  6216. source = "registry+https://github.com/rust-lang/crates.io-index"
  6217. checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
  6218. dependencies = [
  6219. "cfg-if",
  6220. "cpufeatures 0.2.17",
  6221. "digest",
  6222. ]
  6223. [[package]]
  6224. name = "sharded-slab"
  6225. version = "0.1.7"
  6226. source = "registry+https://github.com/rust-lang/crates.io-index"
  6227. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  6228. dependencies = [
  6229. "lazy_static",
  6230. ]
  6231. [[package]]
  6232. name = "shlex"
  6233. version = "2.0.1"
  6234. source = "registry+https://github.com/rust-lang/crates.io-index"
  6235. checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
  6236. [[package]]
  6237. name = "signal-hook-registry"
  6238. version = "1.4.8"
  6239. source = "registry+https://github.com/rust-lang/crates.io-index"
  6240. checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
  6241. dependencies = [
  6242. "errno",
  6243. "libc",
  6244. ]
  6245. [[package]]
  6246. name = "simd-adler32"
  6247. version = "0.3.10"
  6248. source = "registry+https://github.com/rust-lang/crates.io-index"
  6249. checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
  6250. [[package]]
  6251. name = "simd_cesu8"
  6252. version = "1.2.0"
  6253. source = "registry+https://github.com/rust-lang/crates.io-index"
  6254. checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
  6255. dependencies = [
  6256. "rustc_version",
  6257. "simdutf8",
  6258. ]
  6259. [[package]]
  6260. name = "simdutf8"
  6261. version = "0.1.5"
  6262. source = "registry+https://github.com/rust-lang/crates.io-index"
  6263. checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
  6264. [[package]]
  6265. name = "siphasher"
  6266. version = "1.0.3"
  6267. source = "registry+https://github.com/rust-lang/crates.io-index"
  6268. checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
  6269. [[package]]
  6270. name = "sketches-ddsketch"
  6271. version = "0.3.1"
  6272. source = "registry+https://github.com/rust-lang/crates.io-index"
  6273. checksum = "0c6f73aeb92d671e0cc4dca167e59b2deb6387c375391bc99ee743f326994a2b"
  6274. dependencies = [
  6275. "serde",
  6276. ]
  6277. [[package]]
  6278. name = "slab"
  6279. version = "0.4.12"
  6280. source = "registry+https://github.com/rust-lang/crates.io-index"
  6281. checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
  6282. [[package]]
  6283. name = "smallvec"
  6284. version = "1.15.2"
  6285. source = "registry+https://github.com/rust-lang/crates.io-index"
  6286. checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
  6287. [[package]]
  6288. name = "snafu"
  6289. version = "0.8.9"
  6290. source = "registry+https://github.com/rust-lang/crates.io-index"
  6291. checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2"
  6292. dependencies = [
  6293. "snafu-derive 0.8.9",
  6294. ]
  6295. [[package]]
  6296. name = "snafu"
  6297. version = "0.9.2"
  6298. source = "registry+https://github.com/rust-lang/crates.io-index"
  6299. checksum = "e45cb604038abb7b926b679887b3226d8d0f23874b66623625a0454be425a4b7"
  6300. dependencies = [
  6301. "snafu-derive 0.9.2",
  6302. ]
  6303. [[package]]
  6304. name = "snafu-derive"
  6305. version = "0.8.9"
  6306. source = "registry+https://github.com/rust-lang/crates.io-index"
  6307. checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451"
  6308. dependencies = [
  6309. "heck 0.5.0",
  6310. "proc-macro2",
  6311. "quote",
  6312. "syn 2.0.119",
  6313. ]
  6314. [[package]]
  6315. name = "snafu-derive"
  6316. version = "0.9.2"
  6317. source = "registry+https://github.com/rust-lang/crates.io-index"
  6318. checksum = "287f59010008f0d7cf5e3b03196d666c1acc46c8d3e9cf34c28a1a7157601e72"
  6319. dependencies = [
  6320. "heck 0.5.0",
  6321. "proc-macro2",
  6322. "quote",
  6323. "syn 2.0.119",
  6324. ]
  6325. [[package]]
  6326. name = "socket2"
  6327. version = "0.6.5"
  6328. source = "registry+https://github.com/rust-lang/crates.io-index"
  6329. checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
  6330. dependencies = [
  6331. "libc",
  6332. "windows-sys 0.60.2",
  6333. ]
  6334. [[package]]
  6335. name = "softbuffer"
  6336. version = "0.4.8"
  6337. source = "registry+https://github.com/rust-lang/crates.io-index"
  6338. checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3"
  6339. dependencies = [
  6340. "bytemuck",
  6341. "js-sys",
  6342. "ndk",
  6343. "objc2",
  6344. "objc2-core-foundation",
  6345. "objc2-core-graphics",
  6346. "objc2-foundation",
  6347. "objc2-quartz-core",
  6348. "raw-window-handle",
  6349. "redox_syscall",
  6350. "tracing",
  6351. "wasm-bindgen",
  6352. "web-sys",
  6353. "windows-sys 0.61.2",
  6354. ]
  6355. [[package]]
  6356. name = "soup3"
  6357. version = "0.5.0"
  6358. source = "registry+https://github.com/rust-lang/crates.io-index"
  6359. checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
  6360. dependencies = [
  6361. "futures-channel",
  6362. "gio",
  6363. "glib",
  6364. "libc",
  6365. "soup3-sys",
  6366. ]
  6367. [[package]]
  6368. name = "soup3-sys"
  6369. version = "0.5.0"
  6370. source = "registry+https://github.com/rust-lang/crates.io-index"
  6371. checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
  6372. dependencies = [
  6373. "gio-sys",
  6374. "glib-sys",
  6375. "gobject-sys",
  6376. "libc",
  6377. "system-deps",
  6378. ]
  6379. [[package]]
  6380. name = "sqlparser"
  6381. version = "0.59.0"
  6382. source = "registry+https://github.com/rust-lang/crates.io-index"
  6383. checksum = "4591acadbcf52f0af60eafbb2c003232b2b4cd8de5f0e9437cb8b1b59046cc0f"
  6384. dependencies = [
  6385. "log",
  6386. "sqlparser_derive",
  6387. ]
  6388. [[package]]
  6389. name = "sqlparser_derive"
  6390. version = "0.3.0"
  6391. source = "registry+https://github.com/rust-lang/crates.io-index"
  6392. checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c"
  6393. dependencies = [
  6394. "proc-macro2",
  6395. "quote",
  6396. "syn 2.0.119",
  6397. ]
  6398. [[package]]
  6399. name = "stable_deref_trait"
  6400. version = "1.2.1"
  6401. source = "registry+https://github.com/rust-lang/crates.io-index"
  6402. checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
  6403. [[package]]
  6404. name = "std_prelude"
  6405. version = "0.2.12"
  6406. source = "registry+https://github.com/rust-lang/crates.io-index"
  6407. checksum = "8207e78455ffdf55661170876f88daf85356e4edd54e0a3dbc79586ca1e50cbe"
  6408. [[package]]
  6409. name = "stfu8"
  6410. version = "0.2.7"
  6411. source = "registry+https://github.com/rust-lang/crates.io-index"
  6412. checksum = "e51f1e89f093f99e7432c491c382b88a6860a5adbe6bf02574bf0a08efff1978"
  6413. [[package]]
  6414. name = "string_cache"
  6415. version = "0.9.0"
  6416. source = "registry+https://github.com/rust-lang/crates.io-index"
  6417. checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
  6418. dependencies = [
  6419. "new_debug_unreachable",
  6420. "parking_lot",
  6421. "phf_shared 0.13.1",
  6422. "precomputed-hash",
  6423. ]
  6424. [[package]]
  6425. name = "string_cache_codegen"
  6426. version = "0.6.1"
  6427. source = "registry+https://github.com/rust-lang/crates.io-index"
  6428. checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
  6429. dependencies = [
  6430. "phf_generator",
  6431. "phf_shared 0.13.1",
  6432. "proc-macro2",
  6433. "quote",
  6434. ]
  6435. [[package]]
  6436. name = "strsim"
  6437. version = "0.11.1"
  6438. source = "registry+https://github.com/rust-lang/crates.io-index"
  6439. checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
  6440. [[package]]
  6441. name = "strum"
  6442. version = "0.26.3"
  6443. source = "registry+https://github.com/rust-lang/crates.io-index"
  6444. checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
  6445. dependencies = [
  6446. "strum_macros",
  6447. ]
  6448. [[package]]
  6449. name = "strum_macros"
  6450. version = "0.26.4"
  6451. source = "registry+https://github.com/rust-lang/crates.io-index"
  6452. checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
  6453. dependencies = [
  6454. "heck 0.5.0",
  6455. "proc-macro2",
  6456. "quote",
  6457. "rustversion",
  6458. "syn 2.0.119",
  6459. ]
  6460. [[package]]
  6461. name = "subtle"
  6462. version = "2.6.1"
  6463. source = "registry+https://github.com/rust-lang/crates.io-index"
  6464. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  6465. [[package]]
  6466. name = "swift-rs"
  6467. version = "1.0.7"
  6468. source = "registry+https://github.com/rust-lang/crates.io-index"
  6469. checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7"
  6470. dependencies = [
  6471. "base64 0.21.7",
  6472. "serde",
  6473. "serde_json",
  6474. ]
  6475. [[package]]
  6476. name = "syn"
  6477. version = "1.0.109"
  6478. source = "registry+https://github.com/rust-lang/crates.io-index"
  6479. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  6480. dependencies = [
  6481. "proc-macro2",
  6482. "quote",
  6483. "unicode-ident",
  6484. ]
  6485. [[package]]
  6486. name = "syn"
  6487. version = "2.0.119"
  6488. source = "registry+https://github.com/rust-lang/crates.io-index"
  6489. checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
  6490. dependencies = [
  6491. "proc-macro2",
  6492. "quote",
  6493. "unicode-ident",
  6494. ]
  6495. [[package]]
  6496. name = "syn"
  6497. version = "3.0.3"
  6498. source = "registry+https://github.com/rust-lang/crates.io-index"
  6499. checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
  6500. dependencies = [
  6501. "proc-macro2",
  6502. "quote",
  6503. "unicode-ident",
  6504. ]
  6505. [[package]]
  6506. name = "sync_wrapper"
  6507. version = "1.0.2"
  6508. source = "registry+https://github.com/rust-lang/crates.io-index"
  6509. checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
  6510. dependencies = [
  6511. "futures-core",
  6512. ]
  6513. [[package]]
  6514. name = "synstructure"
  6515. version = "0.13.2"
  6516. source = "registry+https://github.com/rust-lang/crates.io-index"
  6517. checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
  6518. dependencies = [
  6519. "proc-macro2",
  6520. "quote",
  6521. "syn 2.0.119",
  6522. ]
  6523. [[package]]
  6524. name = "system-configuration"
  6525. version = "0.7.0"
  6526. source = "registry+https://github.com/rust-lang/crates.io-index"
  6527. checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
  6528. dependencies = [
  6529. "bitflags 2.13.1",
  6530. "core-foundation 0.9.4",
  6531. "system-configuration-sys",
  6532. ]
  6533. [[package]]
  6534. name = "system-configuration-sys"
  6535. version = "0.6.0"
  6536. source = "registry+https://github.com/rust-lang/crates.io-index"
  6537. checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
  6538. dependencies = [
  6539. "core-foundation-sys",
  6540. "libc",
  6541. ]
  6542. [[package]]
  6543. name = "system-deps"
  6544. version = "6.2.2"
  6545. source = "registry+https://github.com/rust-lang/crates.io-index"
  6546. checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
  6547. dependencies = [
  6548. "cfg-expr",
  6549. "heck 0.5.0",
  6550. "pkg-config",
  6551. "toml 0.8.2",
  6552. "version-compare",
  6553. ]
  6554. [[package]]
  6555. name = "tagptr"
  6556. version = "0.2.0"
  6557. source = "registry+https://github.com/rust-lang/crates.io-index"
  6558. checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
  6559. [[package]]
  6560. name = "tantivy"
  6561. version = "0.24.2"
  6562. source = "registry+https://github.com/rust-lang/crates.io-index"
  6563. checksum = "64a966cb0e76e311f09cf18507c9af192f15d34886ee43d7ba7c7e3803660c43"
  6564. dependencies = [
  6565. "aho-corasick",
  6566. "arc-swap",
  6567. "base64 0.22.1",
  6568. "bitpacking",
  6569. "bon",
  6570. "byteorder",
  6571. "census",
  6572. "crc32fast",
  6573. "crossbeam-channel",
  6574. "downcast-rs",
  6575. "fastdivide",
  6576. "fnv",
  6577. "fs4",
  6578. "htmlescape",
  6579. "hyperloglogplus",
  6580. "itertools 0.14.0",
  6581. "levenshtein_automata",
  6582. "log",
  6583. "lru",
  6584. "lz4_flex 0.11.6",
  6585. "measure_time",
  6586. "memmap2",
  6587. "once_cell",
  6588. "oneshot",
  6589. "rayon",
  6590. "regex",
  6591. "rust-stemmers",
  6592. "rustc-hash",
  6593. "serde",
  6594. "serde_json",
  6595. "sketches-ddsketch",
  6596. "smallvec",
  6597. "tantivy-bitpacker",
  6598. "tantivy-columnar",
  6599. "tantivy-common",
  6600. "tantivy-fst",
  6601. "tantivy-query-grammar",
  6602. "tantivy-stacker",
  6603. "tantivy-tokenizer-api",
  6604. "tempfile",
  6605. "thiserror 2.0.20",
  6606. "time",
  6607. "uuid",
  6608. "winapi",
  6609. ]
  6610. [[package]]
  6611. name = "tantivy-bitpacker"
  6612. version = "0.8.0"
  6613. source = "registry+https://github.com/rust-lang/crates.io-index"
  6614. checksum = "1adc286a39e089ae9938935cd488d7d34f14502544a36607effd2239ff0e2494"
  6615. dependencies = [
  6616. "bitpacking",
  6617. ]
  6618. [[package]]
  6619. name = "tantivy-columnar"
  6620. version = "0.5.0"
  6621. source = "registry+https://github.com/rust-lang/crates.io-index"
  6622. checksum = "6300428e0c104c4f7db6f95b466a6f5c1b9aece094ec57cdd365337908dc7344"
  6623. dependencies = [
  6624. "downcast-rs",
  6625. "fastdivide",
  6626. "itertools 0.14.0",
  6627. "serde",
  6628. "tantivy-bitpacker",
  6629. "tantivy-common",
  6630. "tantivy-sstable",
  6631. "tantivy-stacker",
  6632. ]
  6633. [[package]]
  6634. name = "tantivy-common"
  6635. version = "0.9.0"
  6636. source = "registry+https://github.com/rust-lang/crates.io-index"
  6637. checksum = "e91b6ea6090ce03dc72c27d0619e77185d26cc3b20775966c346c6d4f7e99d7f"
  6638. dependencies = [
  6639. "async-trait",
  6640. "byteorder",
  6641. "ownedbytes",
  6642. "serde",
  6643. "time",
  6644. ]
  6645. [[package]]
  6646. name = "tantivy-fst"
  6647. version = "0.5.0"
  6648. source = "registry+https://github.com/rust-lang/crates.io-index"
  6649. checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18"
  6650. dependencies = [
  6651. "byteorder",
  6652. "regex-syntax",
  6653. "utf8-ranges",
  6654. ]
  6655. [[package]]
  6656. name = "tantivy-query-grammar"
  6657. version = "0.24.0"
  6658. source = "registry+https://github.com/rust-lang/crates.io-index"
  6659. checksum = "e810cdeeebca57fc3f7bfec5f85fdbea9031b2ac9b990eb5ff49b371d52bbe6a"
  6660. dependencies = [
  6661. "nom 7.1.3",
  6662. "serde",
  6663. "serde_json",
  6664. ]
  6665. [[package]]
  6666. name = "tantivy-sstable"
  6667. version = "0.5.0"
  6668. source = "registry+https://github.com/rust-lang/crates.io-index"
  6669. checksum = "709f22c08a4c90e1b36711c1c6cad5ae21b20b093e535b69b18783dd2cb99416"
  6670. dependencies = [
  6671. "futures-util",
  6672. "itertools 0.14.0",
  6673. "tantivy-bitpacker",
  6674. "tantivy-common",
  6675. "tantivy-fst",
  6676. "zstd",
  6677. ]
  6678. [[package]]
  6679. name = "tantivy-stacker"
  6680. version = "0.5.0"
  6681. source = "registry+https://github.com/rust-lang/crates.io-index"
  6682. checksum = "2bcdebb267671311d1e8891fd9d1301803fdb8ad21ba22e0a30d0cab49ba59c1"
  6683. dependencies = [
  6684. "murmurhash32",
  6685. "rand_distr 0.4.3",
  6686. "tantivy-common",
  6687. ]
  6688. [[package]]
  6689. name = "tantivy-tokenizer-api"
  6690. version = "0.5.0"
  6691. source = "registry+https://github.com/rust-lang/crates.io-index"
  6692. checksum = "dfa942fcee81e213e09715bbce8734ae2180070b97b33839a795ba1de201547d"
  6693. dependencies = [
  6694. "serde",
  6695. ]
  6696. [[package]]
  6697. name = "tao"
  6698. version = "0.35.3"
  6699. source = "registry+https://github.com/rust-lang/crates.io-index"
  6700. checksum = "d1c93047acf68669466a34690ac58cca7010bd1b201e1ec86f1fd0a75d3dd4a9"
  6701. dependencies = [
  6702. "bitflags 2.13.1",
  6703. "block2",
  6704. "core-foundation 0.10.1",
  6705. "core-graphics",
  6706. "crossbeam-channel",
  6707. "dbus",
  6708. "dispatch2",
  6709. "dlopen2",
  6710. "dpi",
  6711. "gdkwayland-sys",
  6712. "gdkx11-sys",
  6713. "gtk",
  6714. "jni 0.21.1",
  6715. "libc",
  6716. "log",
  6717. "ndk",
  6718. "ndk-sys",
  6719. "objc2",
  6720. "objc2-app-kit",
  6721. "objc2-foundation",
  6722. "objc2-ui-kit",
  6723. "once_cell",
  6724. "parking_lot",
  6725. "percent-encoding",
  6726. "raw-window-handle",
  6727. "tao-macros",
  6728. "unicode-segmentation",
  6729. "url",
  6730. "windows 0.61.3",
  6731. "windows-core 0.61.2",
  6732. "windows-version",
  6733. "x11-dl",
  6734. ]
  6735. [[package]]
  6736. name = "tao-macros"
  6737. version = "0.1.4"
  6738. source = "registry+https://github.com/rust-lang/crates.io-index"
  6739. checksum = "5f7eeb6d99155545da6150a1795945f16ac9c178deb2a5f2e74d776107bd5849"
  6740. dependencies = [
  6741. "proc-macro2",
  6742. "quote",
  6743. "syn 2.0.119",
  6744. ]
  6745. [[package]]
  6746. name = "tap"
  6747. version = "1.0.1"
  6748. source = "registry+https://github.com/rust-lang/crates.io-index"
  6749. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  6750. [[package]]
  6751. name = "tar"
  6752. version = "0.4.46"
  6753. source = "registry+https://github.com/rust-lang/crates.io-index"
  6754. checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
  6755. dependencies = [
  6756. "filetime",
  6757. "libc",
  6758. "xattr",
  6759. ]
  6760. [[package]]
  6761. name = "target-lexicon"
  6762. version = "0.12.16"
  6763. source = "registry+https://github.com/rust-lang/crates.io-index"
  6764. checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
  6765. [[package]]
  6766. name = "tauri"
  6767. version = "2.11.5"
  6768. source = "registry+https://github.com/rust-lang/crates.io-index"
  6769. checksum = "667b20e2726d572dea2de7370da16e188eb06008faf9a92fab7cdc46791190b5"
  6770. dependencies = [
  6771. "anyhow",
  6772. "bytes",
  6773. "cookie",
  6774. "dirs",
  6775. "dunce",
  6776. "embed_plist",
  6777. "getrandom 0.3.4",
  6778. "glob",
  6779. "gtk",
  6780. "heck 0.5.0",
  6781. "http",
  6782. "http-range",
  6783. "jni 0.21.1",
  6784. "libc",
  6785. "log",
  6786. "mime",
  6787. "muda",
  6788. "objc2",
  6789. "objc2-app-kit",
  6790. "objc2-foundation",
  6791. "objc2-ui-kit",
  6792. "objc2-web-kit",
  6793. "percent-encoding",
  6794. "plist",
  6795. "raw-window-handle",
  6796. "reqwest 0.13.4",
  6797. "serde",
  6798. "serde_json",
  6799. "serde_repr",
  6800. "serialize-to-javascript",
  6801. "swift-rs",
  6802. "tauri-build",
  6803. "tauri-macros",
  6804. "tauri-runtime",
  6805. "tauri-runtime-wry",
  6806. "tauri-utils",
  6807. "thiserror 2.0.20",
  6808. "tokio",
  6809. "tray-icon",
  6810. "url",
  6811. "webkit2gtk",
  6812. "webview2-com",
  6813. "window-vibrancy",
  6814. "windows 0.61.3",
  6815. ]
  6816. [[package]]
  6817. name = "tauri-build"
  6818. version = "2.6.3"
  6819. source = "registry+https://github.com/rust-lang/crates.io-index"
  6820. checksum = "bc9ce40b16101cb6ea63d3e221567affd1c3a9205f95d7bc574941a10636b632"
  6821. dependencies = [
  6822. "anyhow",
  6823. "cargo_toml",
  6824. "dirs",
  6825. "glob",
  6826. "heck 0.5.0",
  6827. "json-patch",
  6828. "schemars 0.8.22",
  6829. "semver",
  6830. "serde",
  6831. "serde_json",
  6832. "tauri-utils",
  6833. "tauri-winres",
  6834. "walkdir",
  6835. ]
  6836. [[package]]
  6837. name = "tauri-codegen"
  6838. version = "2.6.3"
  6839. source = "registry+https://github.com/rust-lang/crates.io-index"
  6840. checksum = "08279169ff42f8fc45a1dbc9dcae888893ba95288142e5880c59b93a26d2cfc5"
  6841. dependencies = [
  6842. "base64 0.22.1",
  6843. "brotli",
  6844. "ico",
  6845. "json-patch",
  6846. "plist",
  6847. "png 0.17.16",
  6848. "proc-macro2",
  6849. "quote",
  6850. "semver",
  6851. "serde",
  6852. "serde_json",
  6853. "sha2",
  6854. "syn 2.0.119",
  6855. "tauri-utils",
  6856. "thiserror 2.0.20",
  6857. "time",
  6858. "url",
  6859. "uuid",
  6860. "walkdir",
  6861. ]
  6862. [[package]]
  6863. name = "tauri-macros"
  6864. version = "2.6.3"
  6865. source = "registry+https://github.com/rust-lang/crates.io-index"
  6866. checksum = "e8b394794f399a421811d06966343e7933fcae92d59f5180b9388d1174497a45"
  6867. dependencies = [
  6868. "heck 0.5.0",
  6869. "proc-macro2",
  6870. "quote",
  6871. "syn 2.0.119",
  6872. "tauri-codegen",
  6873. "tauri-utils",
  6874. ]
  6875. [[package]]
  6876. name = "tauri-plugin"
  6877. version = "2.6.3"
  6878. source = "registry+https://github.com/rust-lang/crates.io-index"
  6879. checksum = "74be5dd4bed9afbd145e5716b5fa2ec28cbc29c34ffa61c258c9273d896c8020"
  6880. dependencies = [
  6881. "anyhow",
  6882. "glob",
  6883. "plist",
  6884. "schemars 0.8.22",
  6885. "serde",
  6886. "serde_json",
  6887. "tauri-utils",
  6888. "walkdir",
  6889. ]
  6890. [[package]]
  6891. name = "tauri-plugin-dialog"
  6892. version = "2.7.2"
  6893. source = "registry+https://github.com/rust-lang/crates.io-index"
  6894. checksum = "b2d3c1dbe38037e7f590cdf2492594d5ceebe031e7bc7e827509b22a999d2940"
  6895. dependencies = [
  6896. "log",
  6897. "raw-window-handle",
  6898. "rfd",
  6899. "serde",
  6900. "serde_json",
  6901. "tauri",
  6902. "tauri-plugin",
  6903. "tauri-plugin-fs",
  6904. "thiserror 2.0.20",
  6905. "url",
  6906. ]
  6907. [[package]]
  6908. name = "tauri-plugin-fs"
  6909. version = "2.5.1"
  6910. source = "registry+https://github.com/rust-lang/crates.io-index"
  6911. checksum = "b7ecc274121aca0c036a2b42d1cbe83d368d348f54e0bb8a735c2b1548e8f371"
  6912. dependencies = [
  6913. "anyhow",
  6914. "dunce",
  6915. "glob",
  6916. "log",
  6917. "objc2-foundation",
  6918. "percent-encoding",
  6919. "schemars 0.8.22",
  6920. "serde",
  6921. "serde_json",
  6922. "serde_repr",
  6923. "tauri",
  6924. "tauri-plugin",
  6925. "tauri-utils",
  6926. "thiserror 2.0.20",
  6927. "toml 1.1.4+spec-1.1.0",
  6928. "url",
  6929. ]
  6930. [[package]]
  6931. name = "tauri-plugin-http"
  6932. version = "2.5.9"
  6933. source = "registry+https://github.com/rust-lang/crates.io-index"
  6934. checksum = "b5bd512048e1985b7ec78f96d99083e2ddaf7e0d906b2b63c44ce5bb8b894067"
  6935. dependencies = [
  6936. "bytes",
  6937. "cookie_store",
  6938. "data-url",
  6939. "http",
  6940. "regex",
  6941. "reqwest 0.12.28",
  6942. "schemars 0.8.22",
  6943. "serde",
  6944. "serde_json",
  6945. "tauri",
  6946. "tauri-plugin",
  6947. "tauri-plugin-fs",
  6948. "thiserror 2.0.20",
  6949. "tokio",
  6950. "url",
  6951. "urlpattern",
  6952. ]
  6953. [[package]]
  6954. name = "tauri-plugin-notification"
  6955. version = "2.3.3"
  6956. source = "registry+https://github.com/rust-lang/crates.io-index"
  6957. checksum = "01fc2c5ff41105bd1f7242d8201fdf3efd70749b82fa013a17f2126357d194cc"
  6958. dependencies = [
  6959. "log",
  6960. "notify-rust",
  6961. "rand 0.9.5",
  6962. "serde",
  6963. "serde_json",
  6964. "serde_repr",
  6965. "tauri",
  6966. "tauri-plugin",
  6967. "thiserror 2.0.20",
  6968. "time",
  6969. "url",
  6970. ]
  6971. [[package]]
  6972. name = "tauri-plugin-opener"
  6973. version = "2.5.4"
  6974. source = "registry+https://github.com/rust-lang/crates.io-index"
  6975. checksum = "17e1bea14edce6b793a04e2417e3fd924b9bc4faae83cdee7d714156cceeed29"
  6976. dependencies = [
  6977. "dunce",
  6978. "glob",
  6979. "objc2-app-kit",
  6980. "objc2-foundation",
  6981. "open",
  6982. "schemars 0.8.22",
  6983. "serde",
  6984. "serde_json",
  6985. "tauri",
  6986. "tauri-plugin",
  6987. "thiserror 2.0.20",
  6988. "url",
  6989. "windows 0.61.3",
  6990. "zbus",
  6991. ]
  6992. [[package]]
  6993. name = "tauri-plugin-single-instance"
  6994. version = "2.4.3"
  6995. source = "registry+https://github.com/rust-lang/crates.io-index"
  6996. checksum = "b3214becf9ef5783c0ae99a3bb25adf5353a7a16ebf53e74b909e29205735c6c"
  6997. dependencies = [
  6998. "serde",
  6999. "serde_json",
  7000. "tauri",
  7001. "thiserror 2.0.20",
  7002. "tokio",
  7003. "tracing",
  7004. "windows-sys 0.60.2",
  7005. "zbus",
  7006. ]
  7007. [[package]]
  7008. name = "tauri-plugin-store"
  7009. version = "2.4.4"
  7010. source = "registry+https://github.com/rust-lang/crates.io-index"
  7011. checksum = "6708afbe549f176b712066e71648ba8fafba20789453718260c7ca356733cb0c"
  7012. dependencies = [
  7013. "dunce",
  7014. "serde",
  7015. "serde_json",
  7016. "tauri",
  7017. "tauri-plugin",
  7018. "thiserror 2.0.20",
  7019. "tokio",
  7020. "tracing",
  7021. ]
  7022. [[package]]
  7023. name = "tauri-plugin-updater"
  7024. version = "2.10.1"
  7025. source = "registry+https://github.com/rust-lang/crates.io-index"
  7026. checksum = "806d9dac662c2e4594ff03c647a552f2c9bd544e7d0f683ec58f872f952ce4af"
  7027. dependencies = [
  7028. "base64 0.22.1",
  7029. "dirs",
  7030. "flate2",
  7031. "futures-util",
  7032. "http",
  7033. "infer",
  7034. "log",
  7035. "minisign-verify",
  7036. "osakit",
  7037. "percent-encoding",
  7038. "reqwest 0.13.4",
  7039. "rustls",
  7040. "semver",
  7041. "serde",
  7042. "serde_json",
  7043. "tar",
  7044. "tauri",
  7045. "tauri-plugin",
  7046. "tempfile",
  7047. "thiserror 2.0.20",
  7048. "time",
  7049. "tokio",
  7050. "url",
  7051. "windows-sys 0.60.2",
  7052. "zip 4.6.1",
  7053. ]
  7054. [[package]]
  7055. name = "tauri-runtime"
  7056. version = "2.11.3"
  7057. source = "registry+https://github.com/rust-lang/crates.io-index"
  7058. checksum = "b0b4bc95aed361b0019067d189a1174a603d460d0f6c72606512d59fc9c12ec8"
  7059. dependencies = [
  7060. "cookie",
  7061. "dpi",
  7062. "gtk",
  7063. "http",
  7064. "jni 0.21.1",
  7065. "objc2",
  7066. "objc2-ui-kit",
  7067. "objc2-web-kit",
  7068. "raw-window-handle",
  7069. "serde",
  7070. "serde_json",
  7071. "tauri-utils",
  7072. "thiserror 2.0.20",
  7073. "url",
  7074. "webkit2gtk",
  7075. "webview2-com",
  7076. "windows 0.61.3",
  7077. ]
  7078. [[package]]
  7079. name = "tauri-runtime-wry"
  7080. version = "2.11.4"
  7081. source = "registry+https://github.com/rust-lang/crates.io-index"
  7082. checksum = "4e6fac707727b7a2f48e4ded90976324267371073edbb415ffb73bb0458d203f"
  7083. dependencies = [
  7084. "gtk",
  7085. "http",
  7086. "jni 0.21.1",
  7087. "log",
  7088. "objc2",
  7089. "objc2-app-kit",
  7090. "once_cell",
  7091. "percent-encoding",
  7092. "raw-window-handle",
  7093. "softbuffer",
  7094. "tao",
  7095. "tauri-runtime",
  7096. "tauri-utils",
  7097. "url",
  7098. "webkit2gtk",
  7099. "webview2-com",
  7100. "windows 0.61.3",
  7101. "wry",
  7102. ]
  7103. [[package]]
  7104. name = "tauri-utils"
  7105. version = "2.9.3"
  7106. source = "registry+https://github.com/rust-lang/crates.io-index"
  7107. checksum = "3e176a18e67764923c4f1ce66f25ae4abe5f688384d5eb1a0fa6c77f3d90f887"
  7108. dependencies = [
  7109. "anyhow",
  7110. "brotli",
  7111. "cargo_metadata",
  7112. "ctor",
  7113. "dom_query",
  7114. "dunce",
  7115. "glob",
  7116. "http",
  7117. "infer",
  7118. "json-patch",
  7119. "log",
  7120. "memchr",
  7121. "phf 0.13.1",
  7122. "plist",
  7123. "proc-macro2",
  7124. "quote",
  7125. "regex",
  7126. "schemars 0.8.22",
  7127. "semver",
  7128. "serde",
  7129. "serde-untagged",
  7130. "serde_json",
  7131. "serde_with",
  7132. "swift-rs",
  7133. "thiserror 2.0.20",
  7134. "toml 1.1.4+spec-1.1.0",
  7135. "url",
  7136. "urlpattern",
  7137. "uuid",
  7138. "walkdir",
  7139. ]
  7140. [[package]]
  7141. name = "tauri-winres"
  7142. version = "0.3.6"
  7143. source = "registry+https://github.com/rust-lang/crates.io-index"
  7144. checksum = "cc65d45c68858bfe420dd29e834b5d15dbecf8a07a8a16cf4d532c7b1f69d4b6"
  7145. dependencies = [
  7146. "dunce",
  7147. "embed-resource",
  7148. "toml 1.1.4+spec-1.1.0",
  7149. ]
  7150. [[package]]
  7151. name = "tauri-winrt-notification"
  7152. version = "0.7.3"
  7153. source = "registry+https://github.com/rust-lang/crates.io-index"
  7154. checksum = "9ed071c670382e85fc2f48ae706492d8c338f4f89bf72520d32f8abfe880aade"
  7155. dependencies = [
  7156. "thiserror 2.0.20",
  7157. "windows 0.61.3",
  7158. "windows-version",
  7159. ]
  7160. [[package]]
  7161. name = "tempfile"
  7162. version = "3.27.0"
  7163. source = "registry+https://github.com/rust-lang/crates.io-index"
  7164. checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
  7165. dependencies = [
  7166. "fastrand",
  7167. "getrandom 0.4.3",
  7168. "once_cell",
  7169. "rustix 1.1.4",
  7170. "windows-sys 0.60.2",
  7171. ]
  7172. [[package]]
  7173. name = "tendril"
  7174. version = "0.5.1"
  7175. source = "registry+https://github.com/rust-lang/crates.io-index"
  7176. checksum = "5fed54709c5b3a53d09bb1c113ea4f5ceafd1e772ddcb0030a82e1d56c087b08"
  7177. dependencies = [
  7178. "new_debug_unreachable",
  7179. ]
  7180. [[package]]
  7181. name = "thiserror"
  7182. version = "1.0.69"
  7183. source = "registry+https://github.com/rust-lang/crates.io-index"
  7184. checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
  7185. dependencies = [
  7186. "thiserror-impl 1.0.69",
  7187. ]
  7188. [[package]]
  7189. name = "thiserror"
  7190. version = "2.0.20"
  7191. source = "registry+https://github.com/rust-lang/crates.io-index"
  7192. checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
  7193. dependencies = [
  7194. "thiserror-impl 2.0.20",
  7195. ]
  7196. [[package]]
  7197. name = "thiserror-impl"
  7198. version = "1.0.69"
  7199. source = "registry+https://github.com/rust-lang/crates.io-index"
  7200. checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
  7201. dependencies = [
  7202. "proc-macro2",
  7203. "quote",
  7204. "syn 2.0.119",
  7205. ]
  7206. [[package]]
  7207. name = "thiserror-impl"
  7208. version = "2.0.20"
  7209. source = "registry+https://github.com/rust-lang/crates.io-index"
  7210. checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
  7211. dependencies = [
  7212. "proc-macro2",
  7213. "quote",
  7214. "syn 3.0.3",
  7215. ]
  7216. [[package]]
  7217. name = "thread-tree"
  7218. version = "0.3.3"
  7219. source = "registry+https://github.com/rust-lang/crates.io-index"
  7220. checksum = "ffbd370cb847953a25954d9f63e14824a36113f8c72eecf6eccef5dc4b45d630"
  7221. dependencies = [
  7222. "crossbeam-channel",
  7223. ]
  7224. [[package]]
  7225. name = "thread_local"
  7226. version = "1.1.10"
  7227. source = "registry+https://github.com/rust-lang/crates.io-index"
  7228. checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
  7229. dependencies = [
  7230. "cfg-if",
  7231. ]
  7232. [[package]]
  7233. name = "tiff"
  7234. version = "0.11.3"
  7235. source = "registry+https://github.com/rust-lang/crates.io-index"
  7236. checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
  7237. dependencies = [
  7238. "fax",
  7239. "flate2",
  7240. "half",
  7241. "quick-error",
  7242. "weezl",
  7243. "zune-jpeg",
  7244. ]
  7245. [[package]]
  7246. name = "time"
  7247. version = "0.3.55"
  7248. source = "registry+https://github.com/rust-lang/crates.io-index"
  7249. checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
  7250. dependencies = [
  7251. "deranged",
  7252. "num-conv",
  7253. "powerfmt",
  7254. "serde_core",
  7255. "time-core",
  7256. "time-macros",
  7257. ]
  7258. [[package]]
  7259. name = "time-core"
  7260. version = "0.1.9"
  7261. source = "registry+https://github.com/rust-lang/crates.io-index"
  7262. checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
  7263. [[package]]
  7264. name = "time-macros"
  7265. version = "0.2.32"
  7266. source = "registry+https://github.com/rust-lang/crates.io-index"
  7267. checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
  7268. dependencies = [
  7269. "num-conv",
  7270. "time-core",
  7271. ]
  7272. [[package]]
  7273. name = "tiny-keccak"
  7274. version = "2.0.2"
  7275. source = "registry+https://github.com/rust-lang/crates.io-index"
  7276. checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
  7277. dependencies = [
  7278. "crunchy",
  7279. ]
  7280. [[package]]
  7281. name = "tinystr"
  7282. version = "0.8.4"
  7283. source = "registry+https://github.com/rust-lang/crates.io-index"
  7284. checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
  7285. dependencies = [
  7286. "displaydoc",
  7287. "zerovec",
  7288. ]
  7289. [[package]]
  7290. name = "tinyvec"
  7291. version = "1.12.0"
  7292. source = "registry+https://github.com/rust-lang/crates.io-index"
  7293. checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
  7294. dependencies = [
  7295. "tinyvec_macros",
  7296. ]
  7297. [[package]]
  7298. name = "tinyvec_macros"
  7299. version = "0.1.1"
  7300. source = "registry+https://github.com/rust-lang/crates.io-index"
  7301. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  7302. [[package]]
  7303. name = "tokio"
  7304. version = "1.53.1"
  7305. source = "registry+https://github.com/rust-lang/crates.io-index"
  7306. checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
  7307. dependencies = [
  7308. "bytes",
  7309. "libc",
  7310. "mio",
  7311. "parking_lot",
  7312. "pin-project-lite",
  7313. "signal-hook-registry",
  7314. "socket2",
  7315. "tokio-macros",
  7316. "windows-sys 0.61.2",
  7317. ]
  7318. [[package]]
  7319. name = "tokio-macros"
  7320. version = "2.7.2"
  7321. source = "registry+https://github.com/rust-lang/crates.io-index"
  7322. checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
  7323. dependencies = [
  7324. "proc-macro2",
  7325. "quote",
  7326. "syn 3.0.3",
  7327. ]
  7328. [[package]]
  7329. name = "tokio-rustls"
  7330. version = "0.26.4"
  7331. source = "registry+https://github.com/rust-lang/crates.io-index"
  7332. checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
  7333. dependencies = [
  7334. "rustls",
  7335. "tokio",
  7336. ]
  7337. [[package]]
  7338. name = "tokio-stream"
  7339. version = "0.1.19"
  7340. source = "registry+https://github.com/rust-lang/crates.io-index"
  7341. checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
  7342. dependencies = [
  7343. "futures-core",
  7344. "pin-project-lite",
  7345. "tokio",
  7346. ]
  7347. [[package]]
  7348. name = "tokio-util"
  7349. version = "0.7.19"
  7350. source = "registry+https://github.com/rust-lang/crates.io-index"
  7351. checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
  7352. dependencies = [
  7353. "bytes",
  7354. "futures-core",
  7355. "futures-sink",
  7356. "libc",
  7357. "pin-project-lite",
  7358. "tokio",
  7359. ]
  7360. [[package]]
  7361. name = "toml"
  7362. version = "0.8.2"
  7363. source = "registry+https://github.com/rust-lang/crates.io-index"
  7364. checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
  7365. dependencies = [
  7366. "serde",
  7367. "serde_spanned 0.6.9",
  7368. "toml_datetime 0.6.3",
  7369. "toml_edit 0.20.2",
  7370. ]
  7371. [[package]]
  7372. name = "toml"
  7373. version = "0.9.12+spec-1.1.0"
  7374. source = "registry+https://github.com/rust-lang/crates.io-index"
  7375. checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
  7376. dependencies = [
  7377. "indexmap 2.14.0",
  7378. "serde_core",
  7379. "serde_spanned 1.1.1",
  7380. "toml_datetime 0.7.5+spec-1.1.0",
  7381. "toml_parser",
  7382. "toml_writer",
  7383. "winnow 0.7.15",
  7384. ]
  7385. [[package]]
  7386. name = "toml"
  7387. version = "1.1.4+spec-1.1.0"
  7388. source = "registry+https://github.com/rust-lang/crates.io-index"
  7389. checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
  7390. dependencies = [
  7391. "indexmap 2.14.0",
  7392. "serde_core",
  7393. "serde_spanned 1.1.1",
  7394. "toml_datetime 1.1.1+spec-1.1.0",
  7395. "toml_parser",
  7396. "toml_writer",
  7397. "winnow 1.0.4",
  7398. ]
  7399. [[package]]
  7400. name = "toml_datetime"
  7401. version = "0.6.3"
  7402. source = "registry+https://github.com/rust-lang/crates.io-index"
  7403. checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
  7404. dependencies = [
  7405. "serde",
  7406. ]
  7407. [[package]]
  7408. name = "toml_datetime"
  7409. version = "0.7.5+spec-1.1.0"
  7410. source = "registry+https://github.com/rust-lang/crates.io-index"
  7411. checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
  7412. dependencies = [
  7413. "serde_core",
  7414. ]
  7415. [[package]]
  7416. name = "toml_datetime"
  7417. version = "1.1.1+spec-1.1.0"
  7418. source = "registry+https://github.com/rust-lang/crates.io-index"
  7419. checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
  7420. dependencies = [
  7421. "serde_core",
  7422. ]
  7423. [[package]]
  7424. name = "toml_edit"
  7425. version = "0.19.15"
  7426. source = "registry+https://github.com/rust-lang/crates.io-index"
  7427. checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
  7428. dependencies = [
  7429. "indexmap 2.14.0",
  7430. "toml_datetime 0.6.3",
  7431. "winnow 0.5.40",
  7432. ]
  7433. [[package]]
  7434. name = "toml_edit"
  7435. version = "0.20.2"
  7436. source = "registry+https://github.com/rust-lang/crates.io-index"
  7437. checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
  7438. dependencies = [
  7439. "indexmap 2.14.0",
  7440. "serde",
  7441. "serde_spanned 0.6.9",
  7442. "toml_datetime 0.6.3",
  7443. "winnow 0.5.40",
  7444. ]
  7445. [[package]]
  7446. name = "toml_edit"
  7447. version = "0.25.13+spec-1.1.0"
  7448. source = "registry+https://github.com/rust-lang/crates.io-index"
  7449. checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
  7450. dependencies = [
  7451. "indexmap 2.14.0",
  7452. "toml_datetime 1.1.1+spec-1.1.0",
  7453. "toml_parser",
  7454. "winnow 1.0.4",
  7455. ]
  7456. [[package]]
  7457. name = "toml_parser"
  7458. version = "1.1.3+spec-1.1.0"
  7459. source = "registry+https://github.com/rust-lang/crates.io-index"
  7460. checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
  7461. dependencies = [
  7462. "winnow 1.0.4",
  7463. ]
  7464. [[package]]
  7465. name = "toml_writer"
  7466. version = "1.1.2+spec-1.1.0"
  7467. source = "registry+https://github.com/rust-lang/crates.io-index"
  7468. checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
  7469. [[package]]
  7470. name = "tower"
  7471. version = "0.5.3"
  7472. source = "registry+https://github.com/rust-lang/crates.io-index"
  7473. checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
  7474. dependencies = [
  7475. "futures-core",
  7476. "futures-util",
  7477. "pin-project-lite",
  7478. "sync_wrapper",
  7479. "tokio",
  7480. "tower-layer",
  7481. "tower-service",
  7482. ]
  7483. [[package]]
  7484. name = "tower-http"
  7485. version = "0.6.11"
  7486. source = "registry+https://github.com/rust-lang/crates.io-index"
  7487. checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
  7488. dependencies = [
  7489. "async-compression",
  7490. "bitflags 2.13.1",
  7491. "bytes",
  7492. "futures-core",
  7493. "futures-util",
  7494. "http",
  7495. "http-body",
  7496. "http-body-util",
  7497. "pin-project-lite",
  7498. "tokio",
  7499. "tokio-util",
  7500. "tower",
  7501. "tower-layer",
  7502. "tower-service",
  7503. "url",
  7504. ]
  7505. [[package]]
  7506. name = "tower-layer"
  7507. version = "0.3.3"
  7508. source = "registry+https://github.com/rust-lang/crates.io-index"
  7509. checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
  7510. [[package]]
  7511. name = "tower-service"
  7512. version = "0.3.3"
  7513. source = "registry+https://github.com/rust-lang/crates.io-index"
  7514. checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
  7515. [[package]]
  7516. name = "tracing"
  7517. version = "0.1.44"
  7518. source = "registry+https://github.com/rust-lang/crates.io-index"
  7519. checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
  7520. dependencies = [
  7521. "pin-project-lite",
  7522. "tracing-attributes",
  7523. "tracing-core",
  7524. ]
  7525. [[package]]
  7526. name = "tracing-attributes"
  7527. version = "0.1.31"
  7528. source = "registry+https://github.com/rust-lang/crates.io-index"
  7529. checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
  7530. dependencies = [
  7531. "proc-macro2",
  7532. "quote",
  7533. "syn 2.0.119",
  7534. ]
  7535. [[package]]
  7536. name = "tracing-core"
  7537. version = "0.1.36"
  7538. source = "registry+https://github.com/rust-lang/crates.io-index"
  7539. checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
  7540. dependencies = [
  7541. "once_cell",
  7542. "valuable",
  7543. ]
  7544. [[package]]
  7545. name = "tracing-log"
  7546. version = "0.2.0"
  7547. source = "registry+https://github.com/rust-lang/crates.io-index"
  7548. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  7549. dependencies = [
  7550. "log",
  7551. "once_cell",
  7552. "tracing-core",
  7553. ]
  7554. [[package]]
  7555. name = "tracing-subscriber"
  7556. version = "0.3.23"
  7557. source = "registry+https://github.com/rust-lang/crates.io-index"
  7558. checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
  7559. dependencies = [
  7560. "matchers",
  7561. "nu-ansi-term",
  7562. "once_cell",
  7563. "regex-automata",
  7564. "sharded-slab",
  7565. "smallvec",
  7566. "thread_local",
  7567. "tracing",
  7568. "tracing-core",
  7569. "tracing-log",
  7570. ]
  7571. [[package]]
  7572. name = "tray-icon"
  7573. version = "0.24.2"
  7574. source = "registry+https://github.com/rust-lang/crates.io-index"
  7575. checksum = "045979e3f037cd18ad1cb2a419dfda133c5c29c9f3453370079f2255d46c257e"
  7576. dependencies = [
  7577. "crossbeam-channel",
  7578. "dirs",
  7579. "libappindicator",
  7580. "muda",
  7581. "objc2",
  7582. "objc2-app-kit",
  7583. "objc2-core-foundation",
  7584. "objc2-core-graphics",
  7585. "objc2-foundation",
  7586. "once_cell",
  7587. "png 0.18.1",
  7588. "serde",
  7589. "thiserror 2.0.20",
  7590. "windows-sys 0.60.2",
  7591. ]
  7592. [[package]]
  7593. name = "try-lock"
  7594. version = "0.2.5"
  7595. source = "registry+https://github.com/rust-lang/crates.io-index"
  7596. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  7597. [[package]]
  7598. name = "twox-hash"
  7599. version = "2.1.3"
  7600. source = "registry+https://github.com/rust-lang/crates.io-index"
  7601. checksum = "8464ec13c3691491391d9fce00f6416c9a48e46972f72d7865688be2080192c9"
  7602. dependencies = [
  7603. "rand 0.10.2",
  7604. ]
  7605. [[package]]
  7606. name = "typed-path"
  7607. version = "0.12.3"
  7608. source = "registry+https://github.com/rust-lang/crates.io-index"
  7609. checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
  7610. [[package]]
  7611. name = "typeid"
  7612. version = "1.0.3"
  7613. source = "registry+https://github.com/rust-lang/crates.io-index"
  7614. checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
  7615. [[package]]
  7616. name = "typenum"
  7617. version = "1.20.1"
  7618. source = "registry+https://github.com/rust-lang/crates.io-index"
  7619. checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
  7620. [[package]]
  7621. name = "uds_windows"
  7622. version = "1.2.1"
  7623. source = "registry+https://github.com/rust-lang/crates.io-index"
  7624. checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e"
  7625. dependencies = [
  7626. "memoffset",
  7627. "tempfile",
  7628. "windows-sys 0.60.2",
  7629. ]
  7630. [[package]]
  7631. name = "unic-char-property"
  7632. version = "0.9.0"
  7633. source = "registry+https://github.com/rust-lang/crates.io-index"
  7634. checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
  7635. dependencies = [
  7636. "unic-char-range",
  7637. ]
  7638. [[package]]
  7639. name = "unic-char-range"
  7640. version = "0.9.0"
  7641. source = "registry+https://github.com/rust-lang/crates.io-index"
  7642. checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
  7643. [[package]]
  7644. name = "unic-common"
  7645. version = "0.9.0"
  7646. source = "registry+https://github.com/rust-lang/crates.io-index"
  7647. checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
  7648. [[package]]
  7649. name = "unic-ucd-ident"
  7650. version = "0.9.0"
  7651. source = "registry+https://github.com/rust-lang/crates.io-index"
  7652. checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
  7653. dependencies = [
  7654. "unic-char-property",
  7655. "unic-char-range",
  7656. "unic-ucd-version",
  7657. ]
  7658. [[package]]
  7659. name = "unic-ucd-version"
  7660. version = "0.9.0"
  7661. source = "registry+https://github.com/rust-lang/crates.io-index"
  7662. checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
  7663. dependencies = [
  7664. "unic-common",
  7665. ]
  7666. [[package]]
  7667. name = "unicase"
  7668. version = "2.9.0"
  7669. source = "registry+https://github.com/rust-lang/crates.io-index"
  7670. checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
  7671. [[package]]
  7672. name = "unicode-ident"
  7673. version = "1.0.24"
  7674. source = "registry+https://github.com/rust-lang/crates.io-index"
  7675. checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
  7676. [[package]]
  7677. name = "unicode-segmentation"
  7678. version = "1.13.3"
  7679. source = "registry+https://github.com/rust-lang/crates.io-index"
  7680. checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
  7681. [[package]]
  7682. name = "unicode-width"
  7683. version = "0.2.2"
  7684. source = "registry+https://github.com/rust-lang/crates.io-index"
  7685. checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
  7686. [[package]]
  7687. name = "untrusted"
  7688. version = "0.9.0"
  7689. source = "registry+https://github.com/rust-lang/crates.io-index"
  7690. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  7691. [[package]]
  7692. name = "url"
  7693. version = "2.5.8"
  7694. source = "registry+https://github.com/rust-lang/crates.io-index"
  7695. checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
  7696. dependencies = [
  7697. "form_urlencoded",
  7698. "idna",
  7699. "percent-encoding",
  7700. "serde",
  7701. "serde_derive",
  7702. ]
  7703. [[package]]
  7704. name = "urlpattern"
  7705. version = "0.3.0"
  7706. source = "registry+https://github.com/rust-lang/crates.io-index"
  7707. checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d"
  7708. dependencies = [
  7709. "regex",
  7710. "serde",
  7711. "unic-ucd-ident",
  7712. "url",
  7713. ]
  7714. [[package]]
  7715. name = "utf8-ranges"
  7716. version = "1.0.5"
  7717. source = "registry+https://github.com/rust-lang/crates.io-index"
  7718. checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
  7719. [[package]]
  7720. name = "utf8_iter"
  7721. version = "1.0.4"
  7722. source = "registry+https://github.com/rust-lang/crates.io-index"
  7723. checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
  7724. [[package]]
  7725. name = "uuid"
  7726. version = "1.24.0"
  7727. source = "registry+https://github.com/rust-lang/crates.io-index"
  7728. checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
  7729. dependencies = [
  7730. "getrandom 0.4.3",
  7731. "js-sys",
  7732. "serde_core",
  7733. "wasm-bindgen",
  7734. ]
  7735. [[package]]
  7736. name = "valuable"
  7737. version = "0.1.1"
  7738. source = "registry+https://github.com/rust-lang/crates.io-index"
  7739. checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
  7740. [[package]]
  7741. name = "version-compare"
  7742. version = "0.2.1"
  7743. source = "registry+https://github.com/rust-lang/crates.io-index"
  7744. checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
  7745. [[package]]
  7746. name = "version_check"
  7747. version = "0.9.5"
  7748. source = "registry+https://github.com/rust-lang/crates.io-index"
  7749. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  7750. [[package]]
  7751. name = "vswhom"
  7752. version = "0.1.0"
  7753. source = "registry+https://github.com/rust-lang/crates.io-index"
  7754. checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
  7755. dependencies = [
  7756. "libc",
  7757. "vswhom-sys",
  7758. ]
  7759. [[package]]
  7760. name = "vswhom-sys"
  7761. version = "0.1.3"
  7762. source = "registry+https://github.com/rust-lang/crates.io-index"
  7763. checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150"
  7764. dependencies = [
  7765. "cc",
  7766. "libc",
  7767. ]
  7768. [[package]]
  7769. name = "walkdir"
  7770. version = "2.5.0"
  7771. source = "registry+https://github.com/rust-lang/crates.io-index"
  7772. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  7773. dependencies = [
  7774. "same-file",
  7775. "winapi-util",
  7776. ]
  7777. [[package]]
  7778. name = "want"
  7779. version = "0.3.1"
  7780. source = "registry+https://github.com/rust-lang/crates.io-index"
  7781. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  7782. dependencies = [
  7783. "try-lock",
  7784. ]
  7785. [[package]]
  7786. name = "wasi"
  7787. version = "0.11.1+wasi-snapshot-preview1"
  7788. source = "registry+https://github.com/rust-lang/crates.io-index"
  7789. checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
  7790. [[package]]
  7791. name = "wasip2"
  7792. version = "1.0.4+wasi-0.2.12"
  7793. source = "registry+https://github.com/rust-lang/crates.io-index"
  7794. checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
  7795. dependencies = [
  7796. "wit-bindgen",
  7797. ]
  7798. [[package]]
  7799. name = "wasm-bindgen"
  7800. version = "0.2.127"
  7801. source = "registry+https://github.com/rust-lang/crates.io-index"
  7802. checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
  7803. dependencies = [
  7804. "cfg-if",
  7805. "once_cell",
  7806. "rustversion",
  7807. "wasm-bindgen-macro",
  7808. "wasm-bindgen-shared",
  7809. ]
  7810. [[package]]
  7811. name = "wasm-bindgen-futures"
  7812. version = "0.4.77"
  7813. source = "registry+https://github.com/rust-lang/crates.io-index"
  7814. checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950"
  7815. dependencies = [
  7816. "js-sys",
  7817. "wasm-bindgen",
  7818. ]
  7819. [[package]]
  7820. name = "wasm-bindgen-macro"
  7821. version = "0.2.127"
  7822. source = "registry+https://github.com/rust-lang/crates.io-index"
  7823. checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
  7824. dependencies = [
  7825. "quote",
  7826. "wasm-bindgen-macro-support",
  7827. ]
  7828. [[package]]
  7829. name = "wasm-bindgen-macro-support"
  7830. version = "0.2.127"
  7831. source = "registry+https://github.com/rust-lang/crates.io-index"
  7832. checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
  7833. dependencies = [
  7834. "bumpalo",
  7835. "proc-macro2",
  7836. "quote",
  7837. "syn 2.0.119",
  7838. "wasm-bindgen-shared",
  7839. ]
  7840. [[package]]
  7841. name = "wasm-bindgen-shared"
  7842. version = "0.2.127"
  7843. source = "registry+https://github.com/rust-lang/crates.io-index"
  7844. checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
  7845. dependencies = [
  7846. "unicode-ident",
  7847. ]
  7848. [[package]]
  7849. name = "wasm-streams"
  7850. version = "0.4.2"
  7851. source = "registry+https://github.com/rust-lang/crates.io-index"
  7852. checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
  7853. dependencies = [
  7854. "futures-util",
  7855. "js-sys",
  7856. "wasm-bindgen",
  7857. "wasm-bindgen-futures",
  7858. "web-sys",
  7859. ]
  7860. [[package]]
  7861. name = "wasm-streams"
  7862. version = "0.5.0"
  7863. source = "registry+https://github.com/rust-lang/crates.io-index"
  7864. checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
  7865. dependencies = [
  7866. "futures-util",
  7867. "js-sys",
  7868. "wasm-bindgen",
  7869. "wasm-bindgen-futures",
  7870. "web-sys",
  7871. ]
  7872. [[package]]
  7873. name = "web-sys"
  7874. version = "0.3.104"
  7875. source = "registry+https://github.com/rust-lang/crates.io-index"
  7876. checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
  7877. dependencies = [
  7878. "js-sys",
  7879. "wasm-bindgen",
  7880. ]
  7881. [[package]]
  7882. name = "web-time"
  7883. version = "1.1.0"
  7884. source = "registry+https://github.com/rust-lang/crates.io-index"
  7885. checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
  7886. dependencies = [
  7887. "js-sys",
  7888. "wasm-bindgen",
  7889. ]
  7890. [[package]]
  7891. name = "web_atoms"
  7892. version = "0.2.6"
  7893. source = "registry+https://github.com/rust-lang/crates.io-index"
  7894. checksum = "ba8b815c1b593dc0baf78dd0f4fc8fdb2de53198fb1163738093e9a311c33fb3"
  7895. dependencies = [
  7896. "phf 0.13.1",
  7897. "phf_codegen",
  7898. "string_cache",
  7899. "string_cache_codegen",
  7900. ]
  7901. [[package]]
  7902. name = "webkit2gtk"
  7903. version = "2.0.2"
  7904. source = "registry+https://github.com/rust-lang/crates.io-index"
  7905. checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793"
  7906. dependencies = [
  7907. "bitflags 1.3.2",
  7908. "cairo-rs",
  7909. "gdk",
  7910. "gdk-sys",
  7911. "gio",
  7912. "gio-sys",
  7913. "glib",
  7914. "glib-sys",
  7915. "gobject-sys",
  7916. "gtk",
  7917. "gtk-sys",
  7918. "javascriptcore-rs",
  7919. "libc",
  7920. "once_cell",
  7921. "soup3",
  7922. "webkit2gtk-sys",
  7923. ]
  7924. [[package]]
  7925. name = "webkit2gtk-sys"
  7926. version = "2.0.2"
  7927. source = "registry+https://github.com/rust-lang/crates.io-index"
  7928. checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5"
  7929. dependencies = [
  7930. "bitflags 1.3.2",
  7931. "cairo-sys-rs",
  7932. "gdk-sys",
  7933. "gio-sys",
  7934. "glib-sys",
  7935. "gobject-sys",
  7936. "gtk-sys",
  7937. "javascriptcore-rs-sys",
  7938. "libc",
  7939. "pkg-config",
  7940. "soup3-sys",
  7941. "system-deps",
  7942. ]
  7943. [[package]]
  7944. name = "webpki-root-certs"
  7945. version = "1.0.9"
  7946. source = "registry+https://github.com/rust-lang/crates.io-index"
  7947. checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
  7948. dependencies = [
  7949. "rustls-pki-types",
  7950. ]
  7951. [[package]]
  7952. name = "webpki-roots"
  7953. version = "1.0.9"
  7954. source = "registry+https://github.com/rust-lang/crates.io-index"
  7955. checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
  7956. dependencies = [
  7957. "rustls-pki-types",
  7958. ]
  7959. [[package]]
  7960. name = "webview2-com"
  7961. version = "0.38.2"
  7962. source = "registry+https://github.com/rust-lang/crates.io-index"
  7963. checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a"
  7964. dependencies = [
  7965. "webview2-com-macros",
  7966. "webview2-com-sys",
  7967. "windows 0.61.3",
  7968. "windows-core 0.61.2",
  7969. "windows-implement",
  7970. "windows-interface",
  7971. ]
  7972. [[package]]
  7973. name = "webview2-com-macros"
  7974. version = "0.8.1"
  7975. source = "registry+https://github.com/rust-lang/crates.io-index"
  7976. checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54"
  7977. dependencies = [
  7978. "proc-macro2",
  7979. "quote",
  7980. "syn 2.0.119",
  7981. ]
  7982. [[package]]
  7983. name = "webview2-com-sys"
  7984. version = "0.38.2"
  7985. source = "registry+https://github.com/rust-lang/crates.io-index"
  7986. checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c"
  7987. dependencies = [
  7988. "thiserror 2.0.20",
  7989. "windows 0.61.3",
  7990. "windows-core 0.61.2",
  7991. ]
  7992. [[package]]
  7993. name = "weezl"
  7994. version = "0.1.12"
  7995. source = "registry+https://github.com/rust-lang/crates.io-index"
  7996. checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
  7997. [[package]]
  7998. name = "which"
  7999. version = "7.0.3"
  8000. source = "registry+https://github.com/rust-lang/crates.io-index"
  8001. checksum = "24d643ce3fd3e5b54854602a080f34fb10ab75e0b813ee32d00ca2b44fa74762"
  8002. dependencies = [
  8003. "either",
  8004. "env_home",
  8005. "rustix 1.1.4",
  8006. "winsafe",
  8007. ]
  8008. [[package]]
  8009. name = "winapi"
  8010. version = "0.3.9"
  8011. source = "registry+https://github.com/rust-lang/crates.io-index"
  8012. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  8013. dependencies = [
  8014. "winapi-i686-pc-windows-gnu",
  8015. "winapi-x86_64-pc-windows-gnu",
  8016. ]
  8017. [[package]]
  8018. name = "winapi-i686-pc-windows-gnu"
  8019. version = "0.4.0"
  8020. source = "registry+https://github.com/rust-lang/crates.io-index"
  8021. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  8022. [[package]]
  8023. name = "winapi-util"
  8024. version = "0.1.11"
  8025. source = "registry+https://github.com/rust-lang/crates.io-index"
  8026. checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
  8027. dependencies = [
  8028. "windows-sys 0.60.2",
  8029. ]
  8030. [[package]]
  8031. name = "winapi-x86_64-pc-windows-gnu"
  8032. version = "0.4.0"
  8033. source = "registry+https://github.com/rust-lang/crates.io-index"
  8034. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  8035. [[package]]
  8036. name = "window-vibrancy"
  8037. version = "0.6.0"
  8038. source = "registry+https://github.com/rust-lang/crates.io-index"
  8039. checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c"
  8040. dependencies = [
  8041. "objc2",
  8042. "objc2-app-kit",
  8043. "objc2-core-foundation",
  8044. "objc2-foundation",
  8045. "raw-window-handle",
  8046. "windows-sys 0.59.0",
  8047. "windows-version",
  8048. ]
  8049. [[package]]
  8050. name = "windows"
  8051. version = "0.61.3"
  8052. source = "registry+https://github.com/rust-lang/crates.io-index"
  8053. checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
  8054. dependencies = [
  8055. "windows-collections 0.2.0",
  8056. "windows-core 0.61.2",
  8057. "windows-future 0.2.1",
  8058. "windows-link 0.1.3",
  8059. "windows-numerics 0.2.0",
  8060. ]
  8061. [[package]]
  8062. name = "windows"
  8063. version = "0.62.2"
  8064. source = "registry+https://github.com/rust-lang/crates.io-index"
  8065. checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
  8066. dependencies = [
  8067. "windows-collections 0.3.2",
  8068. "windows-core 0.62.2",
  8069. "windows-future 0.3.2",
  8070. "windows-numerics 0.3.1",
  8071. ]
  8072. [[package]]
  8073. name = "windows-collections"
  8074. version = "0.2.0"
  8075. source = "registry+https://github.com/rust-lang/crates.io-index"
  8076. checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
  8077. dependencies = [
  8078. "windows-core 0.61.2",
  8079. ]
  8080. [[package]]
  8081. name = "windows-collections"
  8082. version = "0.3.2"
  8083. source = "registry+https://github.com/rust-lang/crates.io-index"
  8084. checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
  8085. dependencies = [
  8086. "windows-core 0.62.2",
  8087. ]
  8088. [[package]]
  8089. name = "windows-core"
  8090. version = "0.61.2"
  8091. source = "registry+https://github.com/rust-lang/crates.io-index"
  8092. checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
  8093. dependencies = [
  8094. "windows-implement",
  8095. "windows-interface",
  8096. "windows-link 0.1.3",
  8097. "windows-result 0.3.4",
  8098. "windows-strings 0.4.2",
  8099. ]
  8100. [[package]]
  8101. name = "windows-core"
  8102. version = "0.62.2"
  8103. source = "registry+https://github.com/rust-lang/crates.io-index"
  8104. checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
  8105. dependencies = [
  8106. "windows-implement",
  8107. "windows-interface",
  8108. "windows-link 0.2.1",
  8109. "windows-result 0.4.1",
  8110. "windows-strings 0.5.1",
  8111. ]
  8112. [[package]]
  8113. name = "windows-future"
  8114. version = "0.2.1"
  8115. source = "registry+https://github.com/rust-lang/crates.io-index"
  8116. checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
  8117. dependencies = [
  8118. "windows-core 0.61.2",
  8119. "windows-link 0.1.3",
  8120. "windows-threading 0.1.0",
  8121. ]
  8122. [[package]]
  8123. name = "windows-future"
  8124. version = "0.3.2"
  8125. source = "registry+https://github.com/rust-lang/crates.io-index"
  8126. checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
  8127. dependencies = [
  8128. "windows-core 0.62.2",
  8129. "windows-link 0.2.1",
  8130. "windows-threading 0.2.1",
  8131. ]
  8132. [[package]]
  8133. name = "windows-implement"
  8134. version = "0.60.2"
  8135. source = "registry+https://github.com/rust-lang/crates.io-index"
  8136. checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
  8137. dependencies = [
  8138. "proc-macro2",
  8139. "quote",
  8140. "syn 2.0.119",
  8141. ]
  8142. [[package]]
  8143. name = "windows-interface"
  8144. version = "0.59.3"
  8145. source = "registry+https://github.com/rust-lang/crates.io-index"
  8146. checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
  8147. dependencies = [
  8148. "proc-macro2",
  8149. "quote",
  8150. "syn 2.0.119",
  8151. ]
  8152. [[package]]
  8153. name = "windows-link"
  8154. version = "0.1.3"
  8155. source = "registry+https://github.com/rust-lang/crates.io-index"
  8156. checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
  8157. [[package]]
  8158. name = "windows-link"
  8159. version = "0.2.1"
  8160. source = "registry+https://github.com/rust-lang/crates.io-index"
  8161. checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
  8162. [[package]]
  8163. name = "windows-numerics"
  8164. version = "0.2.0"
  8165. source = "registry+https://github.com/rust-lang/crates.io-index"
  8166. checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
  8167. dependencies = [
  8168. "windows-core 0.61.2",
  8169. "windows-link 0.1.3",
  8170. ]
  8171. [[package]]
  8172. name = "windows-numerics"
  8173. version = "0.3.1"
  8174. source = "registry+https://github.com/rust-lang/crates.io-index"
  8175. checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
  8176. dependencies = [
  8177. "windows-core 0.62.2",
  8178. "windows-link 0.2.1",
  8179. ]
  8180. [[package]]
  8181. name = "windows-registry"
  8182. version = "0.6.1"
  8183. source = "registry+https://github.com/rust-lang/crates.io-index"
  8184. checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
  8185. dependencies = [
  8186. "windows-link 0.2.1",
  8187. "windows-result 0.4.1",
  8188. "windows-strings 0.5.1",
  8189. ]
  8190. [[package]]
  8191. name = "windows-result"
  8192. version = "0.3.4"
  8193. source = "registry+https://github.com/rust-lang/crates.io-index"
  8194. checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
  8195. dependencies = [
  8196. "windows-link 0.1.3",
  8197. ]
  8198. [[package]]
  8199. name = "windows-result"
  8200. version = "0.4.1"
  8201. source = "registry+https://github.com/rust-lang/crates.io-index"
  8202. checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
  8203. dependencies = [
  8204. "windows-link 0.2.1",
  8205. ]
  8206. [[package]]
  8207. name = "windows-strings"
  8208. version = "0.4.2"
  8209. source = "registry+https://github.com/rust-lang/crates.io-index"
  8210. checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
  8211. dependencies = [
  8212. "windows-link 0.1.3",
  8213. ]
  8214. [[package]]
  8215. name = "windows-strings"
  8216. version = "0.5.1"
  8217. source = "registry+https://github.com/rust-lang/crates.io-index"
  8218. checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
  8219. dependencies = [
  8220. "windows-link 0.2.1",
  8221. ]
  8222. [[package]]
  8223. name = "windows-sys"
  8224. version = "0.45.0"
  8225. source = "registry+https://github.com/rust-lang/crates.io-index"
  8226. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  8227. dependencies = [
  8228. "windows-targets 0.42.2",
  8229. ]
  8230. [[package]]
  8231. name = "windows-sys"
  8232. version = "0.52.0"
  8233. source = "registry+https://github.com/rust-lang/crates.io-index"
  8234. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  8235. dependencies = [
  8236. "windows-targets 0.52.6",
  8237. ]
  8238. [[package]]
  8239. name = "windows-sys"
  8240. version = "0.59.0"
  8241. source = "registry+https://github.com/rust-lang/crates.io-index"
  8242. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  8243. dependencies = [
  8244. "windows-targets 0.52.6",
  8245. ]
  8246. [[package]]
  8247. name = "windows-sys"
  8248. version = "0.60.2"
  8249. source = "registry+https://github.com/rust-lang/crates.io-index"
  8250. checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
  8251. dependencies = [
  8252. "windows-targets 0.53.5",
  8253. ]
  8254. [[package]]
  8255. name = "windows-sys"
  8256. version = "0.61.2"
  8257. source = "registry+https://github.com/rust-lang/crates.io-index"
  8258. checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
  8259. dependencies = [
  8260. "windows-link 0.2.1",
  8261. ]
  8262. [[package]]
  8263. name = "windows-targets"
  8264. version = "0.42.2"
  8265. source = "registry+https://github.com/rust-lang/crates.io-index"
  8266. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  8267. dependencies = [
  8268. "windows_aarch64_gnullvm 0.42.2",
  8269. "windows_aarch64_msvc 0.42.2",
  8270. "windows_i686_gnu 0.42.2",
  8271. "windows_i686_msvc 0.42.2",
  8272. "windows_x86_64_gnu 0.42.2",
  8273. "windows_x86_64_gnullvm 0.42.2",
  8274. "windows_x86_64_msvc 0.42.2",
  8275. ]
  8276. [[package]]
  8277. name = "windows-targets"
  8278. version = "0.52.6"
  8279. source = "registry+https://github.com/rust-lang/crates.io-index"
  8280. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  8281. dependencies = [
  8282. "windows_aarch64_gnullvm 0.52.6",
  8283. "windows_aarch64_msvc 0.52.6",
  8284. "windows_i686_gnu 0.52.6",
  8285. "windows_i686_gnullvm 0.52.6",
  8286. "windows_i686_msvc 0.52.6",
  8287. "windows_x86_64_gnu 0.52.6",
  8288. "windows_x86_64_gnullvm 0.52.6",
  8289. "windows_x86_64_msvc 0.52.6",
  8290. ]
  8291. [[package]]
  8292. name = "windows-targets"
  8293. version = "0.53.5"
  8294. source = "registry+https://github.com/rust-lang/crates.io-index"
  8295. checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
  8296. dependencies = [
  8297. "windows-link 0.2.1",
  8298. "windows_aarch64_gnullvm 0.53.1",
  8299. "windows_aarch64_msvc 0.53.1",
  8300. "windows_i686_gnu 0.53.1",
  8301. "windows_i686_gnullvm 0.53.1",
  8302. "windows_i686_msvc 0.53.1",
  8303. "windows_x86_64_gnu 0.53.1",
  8304. "windows_x86_64_gnullvm 0.53.1",
  8305. "windows_x86_64_msvc 0.53.1",
  8306. ]
  8307. [[package]]
  8308. name = "windows-threading"
  8309. version = "0.1.0"
  8310. source = "registry+https://github.com/rust-lang/crates.io-index"
  8311. checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
  8312. dependencies = [
  8313. "windows-link 0.1.3",
  8314. ]
  8315. [[package]]
  8316. name = "windows-threading"
  8317. version = "0.2.1"
  8318. source = "registry+https://github.com/rust-lang/crates.io-index"
  8319. checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
  8320. dependencies = [
  8321. "windows-link 0.2.1",
  8322. ]
  8323. [[package]]
  8324. name = "windows-version"
  8325. version = "0.1.7"
  8326. source = "registry+https://github.com/rust-lang/crates.io-index"
  8327. checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
  8328. dependencies = [
  8329. "windows-link 0.2.1",
  8330. ]
  8331. [[package]]
  8332. name = "windows_aarch64_gnullvm"
  8333. version = "0.42.2"
  8334. source = "registry+https://github.com/rust-lang/crates.io-index"
  8335. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  8336. [[package]]
  8337. name = "windows_aarch64_gnullvm"
  8338. version = "0.52.6"
  8339. source = "registry+https://github.com/rust-lang/crates.io-index"
  8340. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  8341. [[package]]
  8342. name = "windows_aarch64_gnullvm"
  8343. version = "0.53.1"
  8344. source = "registry+https://github.com/rust-lang/crates.io-index"
  8345. checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
  8346. [[package]]
  8347. name = "windows_aarch64_msvc"
  8348. version = "0.42.2"
  8349. source = "registry+https://github.com/rust-lang/crates.io-index"
  8350. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  8351. [[package]]
  8352. name = "windows_aarch64_msvc"
  8353. version = "0.52.6"
  8354. source = "registry+https://github.com/rust-lang/crates.io-index"
  8355. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  8356. [[package]]
  8357. name = "windows_aarch64_msvc"
  8358. version = "0.53.1"
  8359. source = "registry+https://github.com/rust-lang/crates.io-index"
  8360. checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
  8361. [[package]]
  8362. name = "windows_i686_gnu"
  8363. version = "0.42.2"
  8364. source = "registry+https://github.com/rust-lang/crates.io-index"
  8365. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  8366. [[package]]
  8367. name = "windows_i686_gnu"
  8368. version = "0.52.6"
  8369. source = "registry+https://github.com/rust-lang/crates.io-index"
  8370. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  8371. [[package]]
  8372. name = "windows_i686_gnu"
  8373. version = "0.53.1"
  8374. source = "registry+https://github.com/rust-lang/crates.io-index"
  8375. checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
  8376. [[package]]
  8377. name = "windows_i686_gnullvm"
  8378. version = "0.52.6"
  8379. source = "registry+https://github.com/rust-lang/crates.io-index"
  8380. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  8381. [[package]]
  8382. name = "windows_i686_gnullvm"
  8383. version = "0.53.1"
  8384. source = "registry+https://github.com/rust-lang/crates.io-index"
  8385. checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
  8386. [[package]]
  8387. name = "windows_i686_msvc"
  8388. version = "0.42.2"
  8389. source = "registry+https://github.com/rust-lang/crates.io-index"
  8390. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  8391. [[package]]
  8392. name = "windows_i686_msvc"
  8393. version = "0.52.6"
  8394. source = "registry+https://github.com/rust-lang/crates.io-index"
  8395. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  8396. [[package]]
  8397. name = "windows_i686_msvc"
  8398. version = "0.53.1"
  8399. source = "registry+https://github.com/rust-lang/crates.io-index"
  8400. checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
  8401. [[package]]
  8402. name = "windows_x86_64_gnu"
  8403. version = "0.42.2"
  8404. source = "registry+https://github.com/rust-lang/crates.io-index"
  8405. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  8406. [[package]]
  8407. name = "windows_x86_64_gnu"
  8408. version = "0.52.6"
  8409. source = "registry+https://github.com/rust-lang/crates.io-index"
  8410. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  8411. [[package]]
  8412. name = "windows_x86_64_gnu"
  8413. version = "0.53.1"
  8414. source = "registry+https://github.com/rust-lang/crates.io-index"
  8415. checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
  8416. [[package]]
  8417. name = "windows_x86_64_gnullvm"
  8418. version = "0.42.2"
  8419. source = "registry+https://github.com/rust-lang/crates.io-index"
  8420. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  8421. [[package]]
  8422. name = "windows_x86_64_gnullvm"
  8423. version = "0.52.6"
  8424. source = "registry+https://github.com/rust-lang/crates.io-index"
  8425. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  8426. [[package]]
  8427. name = "windows_x86_64_gnullvm"
  8428. version = "0.53.1"
  8429. source = "registry+https://github.com/rust-lang/crates.io-index"
  8430. checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
  8431. [[package]]
  8432. name = "windows_x86_64_msvc"
  8433. version = "0.42.2"
  8434. source = "registry+https://github.com/rust-lang/crates.io-index"
  8435. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  8436. [[package]]
  8437. name = "windows_x86_64_msvc"
  8438. version = "0.52.6"
  8439. source = "registry+https://github.com/rust-lang/crates.io-index"
  8440. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  8441. [[package]]
  8442. name = "windows_x86_64_msvc"
  8443. version = "0.53.1"
  8444. source = "registry+https://github.com/rust-lang/crates.io-index"
  8445. checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
  8446. [[package]]
  8447. name = "winnow"
  8448. version = "0.5.40"
  8449. source = "registry+https://github.com/rust-lang/crates.io-index"
  8450. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  8451. dependencies = [
  8452. "memchr",
  8453. ]
  8454. [[package]]
  8455. name = "winnow"
  8456. version = "0.7.15"
  8457. source = "registry+https://github.com/rust-lang/crates.io-index"
  8458. checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
  8459. [[package]]
  8460. name = "winnow"
  8461. version = "1.0.4"
  8462. source = "registry+https://github.com/rust-lang/crates.io-index"
  8463. checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
  8464. dependencies = [
  8465. "memchr",
  8466. ]
  8467. [[package]]
  8468. name = "winreg"
  8469. version = "0.55.0"
  8470. source = "registry+https://github.com/rust-lang/crates.io-index"
  8471. checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
  8472. dependencies = [
  8473. "cfg-if",
  8474. "windows-sys 0.59.0",
  8475. ]
  8476. [[package]]
  8477. name = "winsafe"
  8478. version = "0.0.19"
  8479. source = "registry+https://github.com/rust-lang/crates.io-index"
  8480. checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
  8481. [[package]]
  8482. name = "wit-bindgen"
  8483. version = "0.57.1"
  8484. source = "registry+https://github.com/rust-lang/crates.io-index"
  8485. checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
  8486. [[package]]
  8487. name = "writeable"
  8488. version = "0.6.4"
  8489. source = "registry+https://github.com/rust-lang/crates.io-index"
  8490. checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
  8491. [[package]]
  8492. name = "wry"
  8493. version = "0.55.1"
  8494. source = "registry+https://github.com/rust-lang/crates.io-index"
  8495. checksum = "186f9871daa55fd9c016578b810d149de58367113db7fb72b462d2323ce19514"
  8496. dependencies = [
  8497. "base64 0.22.1",
  8498. "block2",
  8499. "cookie",
  8500. "crossbeam-channel",
  8501. "dirs",
  8502. "dom_query",
  8503. "dpi",
  8504. "dunce",
  8505. "gdkx11",
  8506. "gtk",
  8507. "http",
  8508. "javascriptcore-rs",
  8509. "jni 0.21.1",
  8510. "libc",
  8511. "ndk",
  8512. "objc2",
  8513. "objc2-app-kit",
  8514. "objc2-core-foundation",
  8515. "objc2-foundation",
  8516. "objc2-ui-kit",
  8517. "objc2-web-kit",
  8518. "once_cell",
  8519. "percent-encoding",
  8520. "raw-window-handle",
  8521. "sha2",
  8522. "soup3",
  8523. "tao-macros",
  8524. "thiserror 2.0.20",
  8525. "url",
  8526. "webkit2gtk",
  8527. "webkit2gtk-sys",
  8528. "webview2-com",
  8529. "windows 0.61.3",
  8530. "windows-core 0.61.2",
  8531. "windows-version",
  8532. "x11-dl",
  8533. ]
  8534. [[package]]
  8535. name = "wyz"
  8536. version = "0.5.1"
  8537. source = "registry+https://github.com/rust-lang/crates.io-index"
  8538. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  8539. dependencies = [
  8540. "tap",
  8541. ]
  8542. [[package]]
  8543. name = "x11"
  8544. version = "2.21.0"
  8545. source = "registry+https://github.com/rust-lang/crates.io-index"
  8546. checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
  8547. dependencies = [
  8548. "libc",
  8549. "pkg-config",
  8550. ]
  8551. [[package]]
  8552. name = "x11-dl"
  8553. version = "2.21.0"
  8554. source = "registry+https://github.com/rust-lang/crates.io-index"
  8555. checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
  8556. dependencies = [
  8557. "libc",
  8558. "once_cell",
  8559. "pkg-config",
  8560. ]
  8561. [[package]]
  8562. name = "xattr"
  8563. version = "1.6.1"
  8564. source = "registry+https://github.com/rust-lang/crates.io-index"
  8565. checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
  8566. dependencies = [
  8567. "libc",
  8568. "rustix 1.1.4",
  8569. ]
  8570. [[package]]
  8571. name = "xxhash-rust"
  8572. version = "0.8.18"
  8573. source = "registry+https://github.com/rust-lang/crates.io-index"
  8574. checksum = "aee1b19627c7c60102ab80d3a9cbe18de90bfe03bfa6c3715447681f0e8c8af6"
  8575. [[package]]
  8576. name = "xz2"
  8577. version = "0.1.7"
  8578. source = "registry+https://github.com/rust-lang/crates.io-index"
  8579. checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
  8580. dependencies = [
  8581. "lzma-sys",
  8582. ]
  8583. [[package]]
  8584. name = "yoke"
  8585. version = "0.8.3"
  8586. source = "registry+https://github.com/rust-lang/crates.io-index"
  8587. checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
  8588. dependencies = [
  8589. "stable_deref_trait",
  8590. "yoke-derive",
  8591. "zerofrom",
  8592. ]
  8593. [[package]]
  8594. name = "yoke-derive"
  8595. version = "0.8.2"
  8596. source = "registry+https://github.com/rust-lang/crates.io-index"
  8597. checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
  8598. dependencies = [
  8599. "proc-macro2",
  8600. "quote",
  8601. "syn 2.0.119",
  8602. "synstructure",
  8603. ]
  8604. [[package]]
  8605. name = "zbus"
  8606. version = "5.19.0"
  8607. source = "registry+https://github.com/rust-lang/crates.io-index"
  8608. checksum = "5db4be7c075cb421e4b7ee645541604239bd243ba7c357511f4ff3a74b555907"
  8609. dependencies = [
  8610. "async-broadcast",
  8611. "async-executor",
  8612. "async-io",
  8613. "async-lock",
  8614. "async-process",
  8615. "async-recursion",
  8616. "async-task",
  8617. "async-trait",
  8618. "blocking",
  8619. "enumflags2",
  8620. "event-listener",
  8621. "futures-core",
  8622. "futures-lite",
  8623. "hex",
  8624. "libc",
  8625. "ordered-stream",
  8626. "rustix 1.1.4",
  8627. "serde",
  8628. "serde_repr",
  8629. "tracing",
  8630. "uds_windows",
  8631. "uuid",
  8632. "windows-sys 0.61.2",
  8633. "winnow 1.0.4",
  8634. "zbus_macros",
  8635. "zbus_names",
  8636. "zvariant",
  8637. ]
  8638. [[package]]
  8639. name = "zbus_macros"
  8640. version = "5.19.0"
  8641. source = "registry+https://github.com/rust-lang/crates.io-index"
  8642. checksum = "2990635d09ade6df1868f72f8cac69a876a90981e8bd3c40b1be413f8dc88f40"
  8643. dependencies = [
  8644. "proc-macro-crate 3.5.0",
  8645. "proc-macro2",
  8646. "quote",
  8647. "syn 3.0.3",
  8648. "zbus_names",
  8649. "zvariant",
  8650. "zvariant_utils",
  8651. ]
  8652. [[package]]
  8653. name = "zbus_names"
  8654. version = "4.3.4"
  8655. source = "registry+https://github.com/rust-lang/crates.io-index"
  8656. checksum = "d8bf88b4a3ff53e883001e0e0115b297a9d53c31b9c1edd2bfdd853e3428624e"
  8657. dependencies = [
  8658. "serde",
  8659. "winnow 1.0.4",
  8660. "zvariant",
  8661. ]
  8662. [[package]]
  8663. name = "zcheapstr"
  8664. version = "1.1.0"
  8665. source = "registry+https://github.com/rust-lang/crates.io-index"
  8666. checksum = "d1afec51604565183aeb5c54c20aeab286120d4e4460f7f76e3e8bb8c0d99473"
  8667. dependencies = [
  8668. "serde",
  8669. ]
  8670. [[package]]
  8671. name = "zerocopy"
  8672. version = "0.8.56"
  8673. source = "registry+https://github.com/rust-lang/crates.io-index"
  8674. checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
  8675. dependencies = [
  8676. "zerocopy-derive",
  8677. ]
  8678. [[package]]
  8679. name = "zerocopy-derive"
  8680. version = "0.8.56"
  8681. source = "registry+https://github.com/rust-lang/crates.io-index"
  8682. checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
  8683. dependencies = [
  8684. "proc-macro2",
  8685. "quote",
  8686. "syn 2.0.119",
  8687. ]
  8688. [[package]]
  8689. name = "zerofrom"
  8690. version = "0.1.8"
  8691. source = "registry+https://github.com/rust-lang/crates.io-index"
  8692. checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
  8693. dependencies = [
  8694. "zerofrom-derive",
  8695. ]
  8696. [[package]]
  8697. name = "zerofrom-derive"
  8698. version = "0.1.7"
  8699. source = "registry+https://github.com/rust-lang/crates.io-index"
  8700. checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
  8701. dependencies = [
  8702. "proc-macro2",
  8703. "quote",
  8704. "syn 2.0.119",
  8705. "synstructure",
  8706. ]
  8707. [[package]]
  8708. name = "zeroize"
  8709. version = "1.9.0"
  8710. source = "registry+https://github.com/rust-lang/crates.io-index"
  8711. checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
  8712. dependencies = [
  8713. "zeroize_derive",
  8714. ]
  8715. [[package]]
  8716. name = "zeroize_derive"
  8717. version = "1.5.0"
  8718. source = "registry+https://github.com/rust-lang/crates.io-index"
  8719. checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
  8720. dependencies = [
  8721. "proc-macro2",
  8722. "quote",
  8723. "syn 2.0.119",
  8724. ]
  8725. [[package]]
  8726. name = "zerotrie"
  8727. version = "0.2.5"
  8728. source = "registry+https://github.com/rust-lang/crates.io-index"
  8729. checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
  8730. dependencies = [
  8731. "displaydoc",
  8732. "yoke",
  8733. "zerofrom",
  8734. ]
  8735. [[package]]
  8736. name = "zerovec"
  8737. version = "0.11.7"
  8738. source = "registry+https://github.com/rust-lang/crates.io-index"
  8739. checksum = "94b5c6b5976d66c1d703c4fd17d3f5e43c8cedaacf604961b171adc7130896d8"
  8740. dependencies = [
  8741. "yoke",
  8742. "zerofrom",
  8743. "zerovec-derive",
  8744. ]
  8745. [[package]]
  8746. name = "zerovec-derive"
  8747. version = "0.11.4"
  8748. source = "registry+https://github.com/rust-lang/crates.io-index"
  8749. checksum = "47402523226a02bfe5230160dc3ccc089aa6f6f19e7fcbb4e6f824bbb1b4aa62"
  8750. dependencies = [
  8751. "proc-macro2",
  8752. "quote",
  8753. "syn 3.0.3",
  8754. ]
  8755. [[package]]
  8756. name = "zip"
  8757. version = "2.4.2"
  8758. source = "registry+https://github.com/rust-lang/crates.io-index"
  8759. checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
  8760. dependencies = [
  8761. "aes",
  8762. "arbitrary",
  8763. "bzip2",
  8764. "constant_time_eq 0.3.1",
  8765. "crc32fast",
  8766. "crossbeam-utils",
  8767. "deflate64",
  8768. "displaydoc",
  8769. "flate2",
  8770. "getrandom 0.3.4",
  8771. "hmac",
  8772. "indexmap 2.14.0",
  8773. "lzma-rs",
  8774. "memchr",
  8775. "pbkdf2",
  8776. "sha1",
  8777. "thiserror 2.0.20",
  8778. "time",
  8779. "xz2",
  8780. "zeroize",
  8781. "zopfli",
  8782. "zstd",
  8783. ]
  8784. [[package]]
  8785. name = "zip"
  8786. version = "4.6.1"
  8787. source = "registry+https://github.com/rust-lang/crates.io-index"
  8788. checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1"
  8789. dependencies = [
  8790. "arbitrary",
  8791. "crc32fast",
  8792. "indexmap 2.14.0",
  8793. "memchr",
  8794. ]
  8795. [[package]]
  8796. name = "zip"
  8797. version = "7.2.0"
  8798. source = "registry+https://github.com/rust-lang/crates.io-index"
  8799. checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
  8800. dependencies = [
  8801. "crc32fast",
  8802. "flate2",
  8803. "indexmap 2.14.0",
  8804. "memchr",
  8805. "typed-path",
  8806. "zopfli",
  8807. ]
  8808. [[package]]
  8809. name = "zip"
  8810. version = "8.6.0"
  8811. source = "registry+https://github.com/rust-lang/crates.io-index"
  8812. checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
  8813. dependencies = [
  8814. "crc32fast",
  8815. "flate2",
  8816. "indexmap 2.14.0",
  8817. "memchr",
  8818. "typed-path",
  8819. "zopfli",
  8820. ]
  8821. [[package]]
  8822. name = "zlib-rs"
  8823. version = "0.6.7"
  8824. source = "registry+https://github.com/rust-lang/crates.io-index"
  8825. checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
  8826. [[package]]
  8827. name = "zmij"
  8828. version = "1.0.23"
  8829. source = "registry+https://github.com/rust-lang/crates.io-index"
  8830. checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
  8831. [[package]]
  8832. name = "zopfli"
  8833. version = "0.8.3"
  8834. source = "registry+https://github.com/rust-lang/crates.io-index"
  8835. checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
  8836. dependencies = [
  8837. "bumpalo",
  8838. "crc32fast",
  8839. "log",
  8840. "simd-adler32",
  8841. ]
  8842. [[package]]
  8843. name = "zstd"
  8844. version = "0.13.3"
  8845. source = "registry+https://github.com/rust-lang/crates.io-index"
  8846. checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
  8847. dependencies = [
  8848. "zstd-safe",
  8849. ]
  8850. [[package]]
  8851. name = "zstd-safe"
  8852. version = "7.2.4"
  8853. source = "registry+https://github.com/rust-lang/crates.io-index"
  8854. checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
  8855. dependencies = [
  8856. "zstd-sys",
  8857. ]
  8858. [[package]]
  8859. name = "zstd-sys"
  8860. version = "2.0.16+zstd.1.5.7"
  8861. source = "registry+https://github.com/rust-lang/crates.io-index"
  8862. checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
  8863. dependencies = [
  8864. "cc",
  8865. "pkg-config",
  8866. ]
  8867. [[package]]
  8868. name = "zune-core"
  8869. version = "0.5.3"
  8870. source = "registry+https://github.com/rust-lang/crates.io-index"
  8871. checksum = "d56377fd46368984a170bc5aac5567e52ca5da874caa60bea39fcbca78fb658b"
  8872. [[package]]
  8873. name = "zune-jpeg"
  8874. version = "0.5.15"
  8875. source = "registry+https://github.com/rust-lang/crates.io-index"
  8876. checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
  8877. dependencies = [
  8878. "zune-core",
  8879. ]
  8880. [[package]]
  8881. name = "zvariant"
  8882. version = "5.14.0"
  8883. source = "registry+https://github.com/rust-lang/crates.io-index"
  8884. checksum = "b5e28c25bd8bb8da5a1f3e7065d0c156b9ee9a7973adf78b0e35eaefdf3b1b5c"
  8885. dependencies = [
  8886. "endi",
  8887. "enumflags2",
  8888. "serde",
  8889. "winnow 1.0.4",
  8890. "zcheapstr",
  8891. "zvariant_derive",
  8892. "zvariant_utils",
  8893. ]
  8894. [[package]]
  8895. name = "zvariant_derive"
  8896. version = "5.14.0"
  8897. source = "registry+https://github.com/rust-lang/crates.io-index"
  8898. checksum = "d496a145685283b67e232bd9e47377f6b60ad9d51e3601b23867f77c42477f96"
  8899. dependencies = [
  8900. "proc-macro-crate 3.5.0",
  8901. "proc-macro2",
  8902. "quote",
  8903. "syn 3.0.3",
  8904. "zvariant_utils",
  8905. ]
  8906. [[package]]
  8907. name = "zvariant_utils"
  8908. version = "4.0.0"
  8909. source = "registry+https://github.com/rust-lang/crates.io-index"
  8910. checksum = "629d80ece222cad20fe0e8741be493c4ab166acf3b85341bdc2cdbcfd8f3c2d6"
  8911. dependencies = [
  8912. "proc-macro2",
  8913. "quote",
  8914. "serde",
  8915. "syn 3.0.3",
  8916. "winnow 1.0.4",
  8917. ]