Cargo.lock 131 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "addr2line"
  6. version = "0.19.0"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
  9. dependencies = [
  10. "gimli",
  11. ]
  12. [[package]]
  13. name = "adler"
  14. version = "1.0.2"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  17. [[package]]
  18. name = "ahash"
  19. version = "0.7.6"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
  22. dependencies = [
  23. "getrandom 0.2.9",
  24. "once_cell",
  25. "version_check",
  26. ]
  27. [[package]]
  28. name = "ahash"
  29. version = "0.8.3"
  30. source = "registry+https://github.com/rust-lang/crates.io-index"
  31. checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
  32. dependencies = [
  33. "cfg-if",
  34. "once_cell",
  35. "version_check",
  36. ]
  37. [[package]]
  38. name = "aho-corasick"
  39. version = "0.7.20"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
  42. dependencies = [
  43. "memchr",
  44. ]
  45. [[package]]
  46. name = "allo-isolate"
  47. version = "0.1.14"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "8ed55848be9f41d44c79df6045b680a74a78bc579e0813f7f196cd7928e22fb1"
  50. dependencies = [
  51. "atomic",
  52. "pin-project",
  53. ]
  54. [[package]]
  55. name = "android_system_properties"
  56. version = "0.1.5"
  57. source = "registry+https://github.com/rust-lang/crates.io-index"
  58. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  59. dependencies = [
  60. "libc",
  61. ]
  62. [[package]]
  63. name = "ansi_term"
  64. version = "0.12.1"
  65. source = "registry+https://github.com/rust-lang/crates.io-index"
  66. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  67. dependencies = [
  68. "winapi",
  69. ]
  70. [[package]]
  71. name = "anyhow"
  72. version = "1.0.71"
  73. source = "registry+https://github.com/rust-lang/crates.io-index"
  74. checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
  75. [[package]]
  76. name = "appflowy-integrate"
  77. version = "0.1.0"
  78. dependencies = [
  79. "anyhow",
  80. "collab",
  81. "collab-database",
  82. "collab-document",
  83. "collab-folder",
  84. "collab-persistence",
  85. "collab-plugins",
  86. "parking_lot 0.12.1",
  87. "serde",
  88. "serde_json",
  89. "tracing",
  90. ]
  91. [[package]]
  92. name = "arrayvec"
  93. version = "0.5.2"
  94. source = "registry+https://github.com/rust-lang/crates.io-index"
  95. checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
  96. [[package]]
  97. name = "arrayvec"
  98. version = "0.7.2"
  99. source = "registry+https://github.com/rust-lang/crates.io-index"
  100. checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
  101. [[package]]
  102. name = "assert-json-diff"
  103. version = "2.0.2"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
  106. dependencies = [
  107. "serde",
  108. "serde_json",
  109. ]
  110. [[package]]
  111. name = "async-stream"
  112. version = "0.3.5"
  113. source = "registry+https://github.com/rust-lang/crates.io-index"
  114. checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
  115. dependencies = [
  116. "async-stream-impl",
  117. "futures-core",
  118. "pin-project-lite",
  119. ]
  120. [[package]]
  121. name = "async-stream-impl"
  122. version = "0.3.5"
  123. source = "registry+https://github.com/rust-lang/crates.io-index"
  124. checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
  125. dependencies = [
  126. "proc-macro2",
  127. "quote",
  128. "syn 2.0.16",
  129. ]
  130. [[package]]
  131. name = "async-trait"
  132. version = "0.1.68"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
  135. dependencies = [
  136. "proc-macro2",
  137. "quote",
  138. "syn 2.0.16",
  139. ]
  140. [[package]]
  141. name = "atomic"
  142. version = "0.5.1"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
  145. dependencies = [
  146. "autocfg",
  147. ]
  148. [[package]]
  149. name = "atomic_refcell"
  150. version = "0.1.9"
  151. source = "registry+https://github.com/rust-lang/crates.io-index"
  152. checksum = "857253367827bd9d0fd973f0ef15506a96e79e41b0ad7aa691203a4e3214f6c8"
  153. [[package]]
  154. name = "autocfg"
  155. version = "1.1.0"
  156. source = "registry+https://github.com/rust-lang/crates.io-index"
  157. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  158. [[package]]
  159. name = "aws-config"
  160. version = "0.55.2"
  161. source = "registry+https://github.com/rust-lang/crates.io-index"
  162. checksum = "fc00553f5f3c06ffd4510a9d576f92143618706c45ea6ff81e84ad9be9588abd"
  163. dependencies = [
  164. "aws-credential-types",
  165. "aws-http",
  166. "aws-sdk-sso",
  167. "aws-sdk-sts",
  168. "aws-smithy-async",
  169. "aws-smithy-client",
  170. "aws-smithy-http",
  171. "aws-smithy-http-tower",
  172. "aws-smithy-json",
  173. "aws-smithy-types",
  174. "aws-types",
  175. "bytes",
  176. "fastrand",
  177. "hex",
  178. "http",
  179. "hyper",
  180. "ring",
  181. "time 0.3.21",
  182. "tokio",
  183. "tower",
  184. "tracing",
  185. "zeroize",
  186. ]
  187. [[package]]
  188. name = "aws-credential-types"
  189. version = "0.55.2"
  190. source = "registry+https://github.com/rust-lang/crates.io-index"
  191. checksum = "4cb57ac6088805821f78d282c0ba8aec809f11cbee10dda19a97b03ab040ccc2"
  192. dependencies = [
  193. "aws-smithy-async",
  194. "aws-smithy-types",
  195. "fastrand",
  196. "tokio",
  197. "tracing",
  198. "zeroize",
  199. ]
  200. [[package]]
  201. name = "aws-endpoint"
  202. version = "0.55.2"
  203. source = "registry+https://github.com/rust-lang/crates.io-index"
  204. checksum = "9c5f6f84a4f46f95a9bb71d9300b73cd67eb868bc43ae84f66ad34752299f4ac"
  205. dependencies = [
  206. "aws-smithy-http",
  207. "aws-smithy-types",
  208. "aws-types",
  209. "http",
  210. "regex",
  211. "tracing",
  212. ]
  213. [[package]]
  214. name = "aws-http"
  215. version = "0.55.2"
  216. source = "registry+https://github.com/rust-lang/crates.io-index"
  217. checksum = "a754683c322f7dc5167484266489fdebdcd04d26e53c162cad1f3f949f2c5671"
  218. dependencies = [
  219. "aws-credential-types",
  220. "aws-smithy-http",
  221. "aws-smithy-types",
  222. "aws-types",
  223. "bytes",
  224. "http",
  225. "http-body",
  226. "lazy_static",
  227. "percent-encoding",
  228. "pin-project-lite",
  229. "tracing",
  230. ]
  231. [[package]]
  232. name = "aws-sdk-dynamodb"
  233. version = "0.27.0"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "67fb64867fe098cffee7e34352b01bbfa2beb3aa1b2ff0e0a7bf9ff293557852"
  236. dependencies = [
  237. "aws-credential-types",
  238. "aws-endpoint",
  239. "aws-http",
  240. "aws-sig-auth",
  241. "aws-smithy-async",
  242. "aws-smithy-client",
  243. "aws-smithy-http",
  244. "aws-smithy-http-tower",
  245. "aws-smithy-json",
  246. "aws-smithy-types",
  247. "aws-types",
  248. "bytes",
  249. "fastrand",
  250. "http",
  251. "regex",
  252. "tokio-stream",
  253. "tower",
  254. "tracing",
  255. ]
  256. [[package]]
  257. name = "aws-sdk-sso"
  258. version = "0.27.0"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "babfd626348836a31785775e3c08a4c345a5ab4c6e06dfd9167f2bee0e6295d6"
  261. dependencies = [
  262. "aws-credential-types",
  263. "aws-endpoint",
  264. "aws-http",
  265. "aws-sig-auth",
  266. "aws-smithy-async",
  267. "aws-smithy-client",
  268. "aws-smithy-http",
  269. "aws-smithy-http-tower",
  270. "aws-smithy-json",
  271. "aws-smithy-types",
  272. "aws-types",
  273. "bytes",
  274. "http",
  275. "regex",
  276. "tokio-stream",
  277. "tower",
  278. "tracing",
  279. ]
  280. [[package]]
  281. name = "aws-sdk-sts"
  282. version = "0.27.0"
  283. source = "registry+https://github.com/rust-lang/crates.io-index"
  284. checksum = "2d0fbe3c2c342bc8dfea4bb43937405a8ec06f99140a0dcb9c7b59e54dfa93a1"
  285. dependencies = [
  286. "aws-credential-types",
  287. "aws-endpoint",
  288. "aws-http",
  289. "aws-sig-auth",
  290. "aws-smithy-async",
  291. "aws-smithy-client",
  292. "aws-smithy-http",
  293. "aws-smithy-http-tower",
  294. "aws-smithy-json",
  295. "aws-smithy-query",
  296. "aws-smithy-types",
  297. "aws-smithy-xml",
  298. "aws-types",
  299. "bytes",
  300. "http",
  301. "regex",
  302. "tower",
  303. "tracing",
  304. ]
  305. [[package]]
  306. name = "aws-sig-auth"
  307. version = "0.55.2"
  308. source = "registry+https://github.com/rust-lang/crates.io-index"
  309. checksum = "84dc92a63ede3c2cbe43529cb87ffa58763520c96c6a46ca1ced80417afba845"
  310. dependencies = [
  311. "aws-credential-types",
  312. "aws-sigv4",
  313. "aws-smithy-http",
  314. "aws-types",
  315. "http",
  316. "tracing",
  317. ]
  318. [[package]]
  319. name = "aws-sigv4"
  320. version = "0.55.2"
  321. source = "registry+https://github.com/rust-lang/crates.io-index"
  322. checksum = "392fefab9d6fcbd76d518eb3b1c040b84728ab50f58df0c3c53ada4bea9d327e"
  323. dependencies = [
  324. "aws-smithy-http",
  325. "form_urlencoded",
  326. "hex",
  327. "hmac",
  328. "http",
  329. "once_cell",
  330. "percent-encoding",
  331. "regex",
  332. "sha2",
  333. "time 0.3.21",
  334. "tracing",
  335. ]
  336. [[package]]
  337. name = "aws-smithy-async"
  338. version = "0.55.2"
  339. source = "registry+https://github.com/rust-lang/crates.io-index"
  340. checksum = "ae23b9fe7a07d0919000116c4c5c0578303fbce6fc8d32efca1f7759d4c20faf"
  341. dependencies = [
  342. "futures-util",
  343. "pin-project-lite",
  344. "tokio",
  345. "tokio-stream",
  346. ]
  347. [[package]]
  348. name = "aws-smithy-client"
  349. version = "0.55.2"
  350. source = "registry+https://github.com/rust-lang/crates.io-index"
  351. checksum = "5230d25d244a51339273b8870f0f77874cd4449fb4f8f629b21188ae10cfc0ba"
  352. dependencies = [
  353. "aws-smithy-async",
  354. "aws-smithy-http",
  355. "aws-smithy-http-tower",
  356. "aws-smithy-types",
  357. "bytes",
  358. "fastrand",
  359. "http",
  360. "http-body",
  361. "hyper",
  362. "hyper-rustls",
  363. "lazy_static",
  364. "pin-project-lite",
  365. "rustls",
  366. "tokio",
  367. "tower",
  368. "tracing",
  369. ]
  370. [[package]]
  371. name = "aws-smithy-http"
  372. version = "0.55.2"
  373. source = "registry+https://github.com/rust-lang/crates.io-index"
  374. checksum = "b60e2133beb9fe6ffe0b70deca57aaeff0a35ad24a9c6fab2fd3b4f45b99fdb5"
  375. dependencies = [
  376. "aws-smithy-types",
  377. "bytes",
  378. "bytes-utils",
  379. "futures-core",
  380. "http",
  381. "http-body",
  382. "hyper",
  383. "once_cell",
  384. "percent-encoding",
  385. "pin-project-lite",
  386. "pin-utils",
  387. "tokio",
  388. "tokio-util",
  389. "tracing",
  390. ]
  391. [[package]]
  392. name = "aws-smithy-http-tower"
  393. version = "0.55.2"
  394. source = "registry+https://github.com/rust-lang/crates.io-index"
  395. checksum = "3a4d94f556c86a0dd916a5d7c39747157ea8cb909ca469703e20fee33e448b67"
  396. dependencies = [
  397. "aws-smithy-http",
  398. "aws-smithy-types",
  399. "bytes",
  400. "http",
  401. "http-body",
  402. "pin-project-lite",
  403. "tower",
  404. "tracing",
  405. ]
  406. [[package]]
  407. name = "aws-smithy-json"
  408. version = "0.55.2"
  409. source = "registry+https://github.com/rust-lang/crates.io-index"
  410. checksum = "5ce3d6e6ebb00b2cce379f079ad5ec508f9bcc3a9510d9b9c1840ed1d6f8af39"
  411. dependencies = [
  412. "aws-smithy-types",
  413. ]
  414. [[package]]
  415. name = "aws-smithy-query"
  416. version = "0.55.2"
  417. source = "registry+https://github.com/rust-lang/crates.io-index"
  418. checksum = "d58edfca32ef9bfbc1ca394599e17ea329cb52d6a07359827be74235b64b3298"
  419. dependencies = [
  420. "aws-smithy-types",
  421. "urlencoding",
  422. ]
  423. [[package]]
  424. name = "aws-smithy-types"
  425. version = "0.55.2"
  426. source = "registry+https://github.com/rust-lang/crates.io-index"
  427. checksum = "58db46fc1f4f26be01ebdb821751b4e2482cd43aa2b64a0348fb89762defaffa"
  428. dependencies = [
  429. "base64-simd",
  430. "itoa",
  431. "num-integer",
  432. "ryu",
  433. "time 0.3.21",
  434. ]
  435. [[package]]
  436. name = "aws-smithy-xml"
  437. version = "0.55.2"
  438. source = "registry+https://github.com/rust-lang/crates.io-index"
  439. checksum = "fb557fe4995bd9ec87fb244bbb254666a971dc902a783e9da8b7711610e9664c"
  440. dependencies = [
  441. "xmlparser",
  442. ]
  443. [[package]]
  444. name = "aws-types"
  445. version = "0.55.2"
  446. source = "registry+https://github.com/rust-lang/crates.io-index"
  447. checksum = "de0869598bfe46ec44ffe17e063ed33336e59df90356ca8ff0e8da6f7c1d994b"
  448. dependencies = [
  449. "aws-credential-types",
  450. "aws-smithy-async",
  451. "aws-smithy-client",
  452. "aws-smithy-http",
  453. "aws-smithy-types",
  454. "http",
  455. "rustc_version",
  456. "tracing",
  457. ]
  458. [[package]]
  459. name = "axum"
  460. version = "0.6.15"
  461. source = "registry+https://github.com/rust-lang/crates.io-index"
  462. checksum = "3b32c5ea3aabaf4deb5f5ced2d688ec0844c881c9e6c696a8b769a05fc691e62"
  463. dependencies = [
  464. "async-trait",
  465. "axum-core",
  466. "bitflags",
  467. "bytes",
  468. "futures-util",
  469. "http",
  470. "http-body",
  471. "hyper",
  472. "itoa",
  473. "matchit",
  474. "memchr",
  475. "mime",
  476. "percent-encoding",
  477. "pin-project-lite",
  478. "rustversion",
  479. "serde",
  480. "sync_wrapper",
  481. "tower",
  482. "tower-layer",
  483. "tower-service",
  484. ]
  485. [[package]]
  486. name = "axum-core"
  487. version = "0.3.4"
  488. source = "registry+https://github.com/rust-lang/crates.io-index"
  489. checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
  490. dependencies = [
  491. "async-trait",
  492. "bytes",
  493. "futures-util",
  494. "http",
  495. "http-body",
  496. "mime",
  497. "rustversion",
  498. "tower-layer",
  499. "tower-service",
  500. ]
  501. [[package]]
  502. name = "backtrace"
  503. version = "0.3.67"
  504. source = "registry+https://github.com/rust-lang/crates.io-index"
  505. checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
  506. dependencies = [
  507. "addr2line",
  508. "cc",
  509. "cfg-if",
  510. "libc",
  511. "miniz_oxide",
  512. "object",
  513. "rustc-demangle",
  514. ]
  515. [[package]]
  516. name = "base64"
  517. version = "0.13.1"
  518. source = "registry+https://github.com/rust-lang/crates.io-index"
  519. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  520. [[package]]
  521. name = "base64"
  522. version = "0.21.0"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
  525. [[package]]
  526. name = "base64-simd"
  527. version = "0.8.0"
  528. source = "registry+https://github.com/rust-lang/crates.io-index"
  529. checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
  530. dependencies = [
  531. "outref",
  532. "vsimd",
  533. ]
  534. [[package]]
  535. name = "bincode"
  536. version = "1.3.3"
  537. source = "registry+https://github.com/rust-lang/crates.io-index"
  538. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  539. dependencies = [
  540. "serde",
  541. ]
  542. [[package]]
  543. name = "bindgen"
  544. version = "0.65.1"
  545. source = "registry+https://github.com/rust-lang/crates.io-index"
  546. checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5"
  547. dependencies = [
  548. "bitflags",
  549. "cexpr",
  550. "clang-sys",
  551. "lazy_static",
  552. "lazycell",
  553. "peeking_take_while",
  554. "prettyplease",
  555. "proc-macro2",
  556. "quote",
  557. "regex",
  558. "rustc-hash",
  559. "shlex",
  560. "syn 2.0.16",
  561. ]
  562. [[package]]
  563. name = "bit-set"
  564. version = "0.5.3"
  565. source = "registry+https://github.com/rust-lang/crates.io-index"
  566. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  567. dependencies = [
  568. "bit-vec",
  569. ]
  570. [[package]]
  571. name = "bit-vec"
  572. version = "0.6.3"
  573. source = "registry+https://github.com/rust-lang/crates.io-index"
  574. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  575. [[package]]
  576. name = "bitflags"
  577. version = "1.3.2"
  578. source = "registry+https://github.com/rust-lang/crates.io-index"
  579. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  580. [[package]]
  581. name = "block-buffer"
  582. version = "0.9.0"
  583. source = "registry+https://github.com/rust-lang/crates.io-index"
  584. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  585. dependencies = [
  586. "generic-array",
  587. ]
  588. [[package]]
  589. name = "block-buffer"
  590. version = "0.10.4"
  591. source = "registry+https://github.com/rust-lang/crates.io-index"
  592. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  593. dependencies = [
  594. "generic-array",
  595. ]
  596. [[package]]
  597. name = "borsh"
  598. version = "0.10.3"
  599. source = "registry+https://github.com/rust-lang/crates.io-index"
  600. checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b"
  601. dependencies = [
  602. "borsh-derive",
  603. "hashbrown 0.13.2",
  604. ]
  605. [[package]]
  606. name = "borsh-derive"
  607. version = "0.10.3"
  608. source = "registry+https://github.com/rust-lang/crates.io-index"
  609. checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7"
  610. dependencies = [
  611. "borsh-derive-internal",
  612. "borsh-schema-derive-internal",
  613. "proc-macro-crate",
  614. "proc-macro2",
  615. "syn 1.0.109",
  616. ]
  617. [[package]]
  618. name = "borsh-derive-internal"
  619. version = "0.10.3"
  620. source = "registry+https://github.com/rust-lang/crates.io-index"
  621. checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb"
  622. dependencies = [
  623. "proc-macro2",
  624. "quote",
  625. "syn 1.0.109",
  626. ]
  627. [[package]]
  628. name = "borsh-schema-derive-internal"
  629. version = "0.10.3"
  630. source = "registry+https://github.com/rust-lang/crates.io-index"
  631. checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd"
  632. dependencies = [
  633. "proc-macro2",
  634. "quote",
  635. "syn 1.0.109",
  636. ]
  637. [[package]]
  638. name = "bstr"
  639. version = "1.4.0"
  640. source = "registry+https://github.com/rust-lang/crates.io-index"
  641. checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09"
  642. dependencies = [
  643. "memchr",
  644. "serde",
  645. ]
  646. [[package]]
  647. name = "bumpalo"
  648. version = "3.12.0"
  649. source = "registry+https://github.com/rust-lang/crates.io-index"
  650. checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
  651. [[package]]
  652. name = "bytecheck"
  653. version = "0.6.10"
  654. source = "registry+https://github.com/rust-lang/crates.io-index"
  655. checksum = "13fe11640a23eb24562225322cd3e452b93a3d4091d62fab69c70542fcd17d1f"
  656. dependencies = [
  657. "bytecheck_derive",
  658. "ptr_meta",
  659. "simdutf8",
  660. ]
  661. [[package]]
  662. name = "bytecheck_derive"
  663. version = "0.6.10"
  664. source = "registry+https://github.com/rust-lang/crates.io-index"
  665. checksum = "e31225543cb46f81a7e224762764f4a6a0f097b1db0b175f69e8065efaa42de5"
  666. dependencies = [
  667. "proc-macro2",
  668. "quote",
  669. "syn 1.0.109",
  670. ]
  671. [[package]]
  672. name = "byteorder"
  673. version = "1.4.3"
  674. source = "registry+https://github.com/rust-lang/crates.io-index"
  675. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  676. [[package]]
  677. name = "bytes"
  678. version = "1.4.0"
  679. source = "registry+https://github.com/rust-lang/crates.io-index"
  680. checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
  681. dependencies = [
  682. "serde",
  683. ]
  684. [[package]]
  685. name = "bytes-utils"
  686. version = "0.1.3"
  687. source = "registry+https://github.com/rust-lang/crates.io-index"
  688. checksum = "e47d3a8076e283f3acd27400535992edb3ba4b5bb72f8891ad8fbe7932a7d4b9"
  689. dependencies = [
  690. "bytes",
  691. "either",
  692. ]
  693. [[package]]
  694. name = "bzip2-sys"
  695. version = "0.1.11+1.0.8"
  696. source = "registry+https://github.com/rust-lang/crates.io-index"
  697. checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
  698. dependencies = [
  699. "cc",
  700. "libc",
  701. "pkg-config",
  702. ]
  703. [[package]]
  704. name = "cc"
  705. version = "1.0.79"
  706. source = "registry+https://github.com/rust-lang/crates.io-index"
  707. checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
  708. dependencies = [
  709. "jobserver",
  710. ]
  711. [[package]]
  712. name = "cexpr"
  713. version = "0.6.0"
  714. source = "registry+https://github.com/rust-lang/crates.io-index"
  715. checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
  716. dependencies = [
  717. "nom 7.1.3",
  718. ]
  719. [[package]]
  720. name = "cfg-if"
  721. version = "1.0.0"
  722. source = "registry+https://github.com/rust-lang/crates.io-index"
  723. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  724. [[package]]
  725. name = "chrono"
  726. version = "0.4.24"
  727. source = "registry+https://github.com/rust-lang/crates.io-index"
  728. checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
  729. dependencies = [
  730. "iana-time-zone",
  731. "js-sys",
  732. "num-integer",
  733. "num-traits",
  734. "serde",
  735. "time 0.1.45",
  736. "wasm-bindgen",
  737. "winapi",
  738. ]
  739. [[package]]
  740. name = "chrono-tz"
  741. version = "0.6.1"
  742. source = "registry+https://github.com/rust-lang/crates.io-index"
  743. checksum = "58549f1842da3080ce63002102d5bc954c7bc843d4f47818e642abdc36253552"
  744. dependencies = [
  745. "chrono",
  746. "chrono-tz-build 0.0.2",
  747. "phf 0.10.1",
  748. ]
  749. [[package]]
  750. name = "chrono-tz"
  751. version = "0.8.2"
  752. source = "registry+https://github.com/rust-lang/crates.io-index"
  753. checksum = "cf9cc2b23599e6d7479755f3594285efb3f74a1bdca7a7374948bc831e23a552"
  754. dependencies = [
  755. "chrono",
  756. "chrono-tz-build 0.1.0",
  757. "phf 0.11.1",
  758. ]
  759. [[package]]
  760. name = "chrono-tz-build"
  761. version = "0.0.2"
  762. source = "registry+https://github.com/rust-lang/crates.io-index"
  763. checksum = "db058d493fb2f65f41861bfed7e3fe6335264a9f0f92710cab5bdf01fef09069"
  764. dependencies = [
  765. "parse-zoneinfo",
  766. "phf 0.10.1",
  767. "phf_codegen 0.10.0",
  768. ]
  769. [[package]]
  770. name = "chrono-tz-build"
  771. version = "0.1.0"
  772. source = "registry+https://github.com/rust-lang/crates.io-index"
  773. checksum = "d9998fb9f7e9b2111641485bf8beb32f92945f97f92a3d061f744cfef335f751"
  774. dependencies = [
  775. "parse-zoneinfo",
  776. "phf 0.11.1",
  777. "phf_codegen 0.11.1",
  778. ]
  779. [[package]]
  780. name = "clang-sys"
  781. version = "1.6.1"
  782. source = "registry+https://github.com/rust-lang/crates.io-index"
  783. checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
  784. dependencies = [
  785. "glob",
  786. "libc",
  787. "libloading",
  788. ]
  789. [[package]]
  790. name = "cmd_lib"
  791. version = "1.3.0"
  792. source = "registry+https://github.com/rust-lang/crates.io-index"
  793. checksum = "0ba0f413777386d37f85afa5242f277a7b461905254c1af3c339d4af06800f62"
  794. dependencies = [
  795. "cmd_lib_macros",
  796. "faccess",
  797. "lazy_static",
  798. "log",
  799. "os_pipe",
  800. ]
  801. [[package]]
  802. name = "cmd_lib_macros"
  803. version = "1.3.0"
  804. source = "registry+https://github.com/rust-lang/crates.io-index"
  805. checksum = "9e66605092ff6c6e37e0246601ae6c3f62dc1880e0599359b5f303497c112dc0"
  806. dependencies = [
  807. "proc-macro-error",
  808. "proc-macro2",
  809. "quote",
  810. "syn 1.0.109",
  811. ]
  812. [[package]]
  813. name = "codespan-reporting"
  814. version = "0.11.1"
  815. source = "registry+https://github.com/rust-lang/crates.io-index"
  816. checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
  817. dependencies = [
  818. "termcolor",
  819. "unicode-width",
  820. ]
  821. [[package]]
  822. name = "collab"
  823. version = "0.1.0"
  824. dependencies = [
  825. "anyhow",
  826. "bytes",
  827. "lib0",
  828. "parking_lot 0.12.1",
  829. "serde",
  830. "serde_json",
  831. "thiserror",
  832. "tokio",
  833. "tracing",
  834. "y-sync",
  835. "yrs",
  836. ]
  837. [[package]]
  838. name = "collab-client-ws"
  839. version = "0.1.0"
  840. dependencies = [
  841. "bytes",
  842. "collab-sync",
  843. "futures-util",
  844. "serde",
  845. "serde_json",
  846. "thiserror",
  847. "tokio",
  848. "tokio-retry",
  849. "tokio-stream",
  850. "tokio-tungstenite 0.18.0",
  851. "tracing",
  852. ]
  853. [[package]]
  854. name = "collab-database"
  855. version = "0.1.0"
  856. dependencies = [
  857. "anyhow",
  858. "async-trait",
  859. "base64 0.21.0",
  860. "chrono",
  861. "collab",
  862. "collab-derive",
  863. "collab-persistence",
  864. "collab-plugins",
  865. "lazy_static",
  866. "lru",
  867. "nanoid",
  868. "parking_lot 0.12.1",
  869. "serde",
  870. "serde_json",
  871. "serde_repr",
  872. "thiserror",
  873. "tokio",
  874. "tokio-stream",
  875. "tracing",
  876. "uuid",
  877. ]
  878. [[package]]
  879. name = "collab-derive"
  880. version = "0.1.0"
  881. dependencies = [
  882. "proc-macro2",
  883. "quote",
  884. "serde_json",
  885. "syn 1.0.109",
  886. "yrs",
  887. ]
  888. [[package]]
  889. name = "collab-document"
  890. version = "0.1.0"
  891. dependencies = [
  892. "anyhow",
  893. "collab",
  894. "collab-derive",
  895. "collab-persistence",
  896. "nanoid",
  897. "parking_lot 0.12.1",
  898. "serde",
  899. "serde_json",
  900. "thiserror",
  901. "tokio",
  902. "tokio-stream",
  903. "tracing",
  904. ]
  905. [[package]]
  906. name = "collab-folder"
  907. version = "0.1.0"
  908. dependencies = [
  909. "anyhow",
  910. "chrono",
  911. "collab",
  912. "collab-derive",
  913. "collab-persistence",
  914. "parking_lot 0.12.1",
  915. "serde",
  916. "serde_json",
  917. "serde_repr",
  918. "thiserror",
  919. "tokio",
  920. "tokio-stream",
  921. "tracing",
  922. ]
  923. [[package]]
  924. name = "collab-persistence"
  925. version = "0.1.0"
  926. dependencies = [
  927. "bincode",
  928. "chrono",
  929. "lazy_static",
  930. "lib0",
  931. "parking_lot 0.12.1",
  932. "rocksdb",
  933. "serde",
  934. "sled",
  935. "smallvec",
  936. "thiserror",
  937. "tokio",
  938. "tracing",
  939. "yrs",
  940. ]
  941. [[package]]
  942. name = "collab-plugins"
  943. version = "0.1.0"
  944. dependencies = [
  945. "anyhow",
  946. "async-trait",
  947. "aws-config",
  948. "aws-credential-types",
  949. "aws-sdk-dynamodb",
  950. "base64 0.21.0",
  951. "collab",
  952. "collab-client-ws",
  953. "collab-persistence",
  954. "collab-sync",
  955. "futures-util",
  956. "parking_lot 0.12.1",
  957. "postgrest",
  958. "rand 0.8.5",
  959. "refinery",
  960. "rusoto_credential",
  961. "serde",
  962. "serde_json",
  963. "similar 2.2.1",
  964. "thiserror",
  965. "tokio",
  966. "tokio-postgres",
  967. "tokio-retry",
  968. "tokio-stream",
  969. "tracing",
  970. "y-sync",
  971. "yrs",
  972. ]
  973. [[package]]
  974. name = "collab-sync"
  975. version = "0.1.0"
  976. dependencies = [
  977. "bytes",
  978. "collab",
  979. "futures-util",
  980. "lib0",
  981. "md5",
  982. "parking_lot 0.12.1",
  983. "serde",
  984. "serde_json",
  985. "thiserror",
  986. "tokio",
  987. "tokio-stream",
  988. "tokio-util",
  989. "tracing",
  990. "y-sync",
  991. "yrs",
  992. ]
  993. [[package]]
  994. name = "config"
  995. version = "0.10.1"
  996. source = "registry+https://github.com/rust-lang/crates.io-index"
  997. checksum = "19b076e143e1d9538dde65da30f8481c2a6c44040edb8e02b9bf1351edb92ce3"
  998. dependencies = [
  999. "lazy_static",
  1000. "nom 5.1.2",
  1001. "serde",
  1002. "yaml-rust",
  1003. ]
  1004. [[package]]
  1005. name = "console"
  1006. version = "0.14.1"
  1007. source = "registry+https://github.com/rust-lang/crates.io-index"
  1008. checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45"
  1009. dependencies = [
  1010. "encode_unicode",
  1011. "lazy_static",
  1012. "libc",
  1013. "regex",
  1014. "terminal_size",
  1015. "unicode-width",
  1016. "winapi",
  1017. ]
  1018. [[package]]
  1019. name = "console-api"
  1020. version = "0.4.0"
  1021. source = "registry+https://github.com/rust-lang/crates.io-index"
  1022. checksum = "e57ff02e8ad8e06ab9731d5dc72dc23bef9200778eae1a89d555d8c42e5d4a86"
  1023. dependencies = [
  1024. "prost",
  1025. "prost-types",
  1026. "tonic",
  1027. "tracing-core",
  1028. ]
  1029. [[package]]
  1030. name = "console-subscriber"
  1031. version = "0.1.8"
  1032. source = "registry+https://github.com/rust-lang/crates.io-index"
  1033. checksum = "22a3a81dfaf6b66bce5d159eddae701e3a002f194d378cbf7be5f053c281d9be"
  1034. dependencies = [
  1035. "console-api",
  1036. "crossbeam-channel",
  1037. "crossbeam-utils",
  1038. "futures",
  1039. "hdrhistogram",
  1040. "humantime",
  1041. "prost-types",
  1042. "serde",
  1043. "serde_json",
  1044. "thread_local",
  1045. "tokio",
  1046. "tokio-stream",
  1047. "tonic",
  1048. "tracing",
  1049. "tracing-core",
  1050. "tracing-subscriber 0.3.16",
  1051. ]
  1052. [[package]]
  1053. name = "core-foundation"
  1054. version = "0.9.3"
  1055. source = "registry+https://github.com/rust-lang/crates.io-index"
  1056. checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
  1057. dependencies = [
  1058. "core-foundation-sys",
  1059. "libc",
  1060. ]
  1061. [[package]]
  1062. name = "core-foundation-sys"
  1063. version = "0.8.4"
  1064. source = "registry+https://github.com/rust-lang/crates.io-index"
  1065. checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
  1066. [[package]]
  1067. name = "cpufeatures"
  1068. version = "0.2.6"
  1069. source = "registry+https://github.com/rust-lang/crates.io-index"
  1070. checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181"
  1071. dependencies = [
  1072. "libc",
  1073. ]
  1074. [[package]]
  1075. name = "crc32fast"
  1076. version = "1.3.2"
  1077. source = "registry+https://github.com/rust-lang/crates.io-index"
  1078. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  1079. dependencies = [
  1080. "cfg-if",
  1081. ]
  1082. [[package]]
  1083. name = "crossbeam-channel"
  1084. version = "0.5.8"
  1085. source = "registry+https://github.com/rust-lang/crates.io-index"
  1086. checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
  1087. dependencies = [
  1088. "cfg-if",
  1089. "crossbeam-utils",
  1090. ]
  1091. [[package]]
  1092. name = "crossbeam-deque"
  1093. version = "0.8.3"
  1094. source = "registry+https://github.com/rust-lang/crates.io-index"
  1095. checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
  1096. dependencies = [
  1097. "cfg-if",
  1098. "crossbeam-epoch",
  1099. "crossbeam-utils",
  1100. ]
  1101. [[package]]
  1102. name = "crossbeam-epoch"
  1103. version = "0.9.14"
  1104. source = "registry+https://github.com/rust-lang/crates.io-index"
  1105. checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
  1106. dependencies = [
  1107. "autocfg",
  1108. "cfg-if",
  1109. "crossbeam-utils",
  1110. "memoffset",
  1111. "scopeguard",
  1112. ]
  1113. [[package]]
  1114. name = "crossbeam-utils"
  1115. version = "0.8.15"
  1116. source = "registry+https://github.com/rust-lang/crates.io-index"
  1117. checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
  1118. dependencies = [
  1119. "cfg-if",
  1120. ]
  1121. [[package]]
  1122. name = "crypto-common"
  1123. version = "0.1.6"
  1124. source = "registry+https://github.com/rust-lang/crates.io-index"
  1125. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1126. dependencies = [
  1127. "generic-array",
  1128. "typenum",
  1129. ]
  1130. [[package]]
  1131. name = "csv"
  1132. version = "1.2.1"
  1133. source = "registry+https://github.com/rust-lang/crates.io-index"
  1134. checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad"
  1135. dependencies = [
  1136. "csv-core",
  1137. "itoa",
  1138. "ryu",
  1139. "serde",
  1140. ]
  1141. [[package]]
  1142. name = "csv-core"
  1143. version = "0.1.10"
  1144. source = "registry+https://github.com/rust-lang/crates.io-index"
  1145. checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
  1146. dependencies = [
  1147. "memchr",
  1148. ]
  1149. [[package]]
  1150. name = "cxx"
  1151. version = "1.0.94"
  1152. source = "registry+https://github.com/rust-lang/crates.io-index"
  1153. checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
  1154. dependencies = [
  1155. "cc",
  1156. "cxxbridge-flags",
  1157. "cxxbridge-macro",
  1158. "link-cplusplus",
  1159. ]
  1160. [[package]]
  1161. name = "cxx-build"
  1162. version = "1.0.94"
  1163. source = "registry+https://github.com/rust-lang/crates.io-index"
  1164. checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
  1165. dependencies = [
  1166. "cc",
  1167. "codespan-reporting",
  1168. "once_cell",
  1169. "proc-macro2",
  1170. "quote",
  1171. "scratch",
  1172. "syn 2.0.16",
  1173. ]
  1174. [[package]]
  1175. name = "cxxbridge-flags"
  1176. version = "1.0.94"
  1177. source = "registry+https://github.com/rust-lang/crates.io-index"
  1178. checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb"
  1179. [[package]]
  1180. name = "cxxbridge-macro"
  1181. version = "1.0.94"
  1182. source = "registry+https://github.com/rust-lang/crates.io-index"
  1183. checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
  1184. dependencies = [
  1185. "proc-macro2",
  1186. "quote",
  1187. "syn 2.0.16",
  1188. ]
  1189. [[package]]
  1190. name = "dart-ffi"
  1191. version = "0.1.0"
  1192. dependencies = [
  1193. "allo-isolate",
  1194. "appflowy-integrate",
  1195. "byteorder",
  1196. "bytes",
  1197. "crossbeam-utils",
  1198. "flowy-codegen",
  1199. "flowy-core",
  1200. "flowy-derive",
  1201. "flowy-net",
  1202. "flowy-notification",
  1203. "flowy-server",
  1204. "lazy_static",
  1205. "lib-dispatch",
  1206. "log",
  1207. "parking_lot 0.12.1",
  1208. "protobuf",
  1209. "serde",
  1210. "serde_json",
  1211. "tokio",
  1212. "tracing",
  1213. ]
  1214. [[package]]
  1215. name = "dashmap"
  1216. version = "5.4.0"
  1217. source = "registry+https://github.com/rust-lang/crates.io-index"
  1218. checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
  1219. dependencies = [
  1220. "cfg-if",
  1221. "hashbrown 0.12.3",
  1222. "lock_api",
  1223. "once_cell",
  1224. "parking_lot_core 0.9.7",
  1225. ]
  1226. [[package]]
  1227. name = "deadpool"
  1228. version = "0.9.5"
  1229. source = "registry+https://github.com/rust-lang/crates.io-index"
  1230. checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
  1231. dependencies = [
  1232. "async-trait",
  1233. "deadpool-runtime",
  1234. "num_cpus",
  1235. "retain_mut",
  1236. "tokio",
  1237. ]
  1238. [[package]]
  1239. name = "deadpool-postgres"
  1240. version = "0.10.5"
  1241. source = "registry+https://github.com/rust-lang/crates.io-index"
  1242. checksum = "836a24a9d49deefe610b8b60c767a7412e9a931d79a89415cd2d2d71630ca8d7"
  1243. dependencies = [
  1244. "deadpool",
  1245. "log",
  1246. "tokio",
  1247. "tokio-postgres",
  1248. ]
  1249. [[package]]
  1250. name = "deadpool-runtime"
  1251. version = "0.1.2"
  1252. source = "registry+https://github.com/rust-lang/crates.io-index"
  1253. checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
  1254. dependencies = [
  1255. "tokio",
  1256. ]
  1257. [[package]]
  1258. name = "derivative"
  1259. version = "2.2.0"
  1260. source = "registry+https://github.com/rust-lang/crates.io-index"
  1261. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  1262. dependencies = [
  1263. "proc-macro2",
  1264. "quote",
  1265. "syn 1.0.109",
  1266. ]
  1267. [[package]]
  1268. name = "deunicode"
  1269. version = "0.4.3"
  1270. source = "registry+https://github.com/rust-lang/crates.io-index"
  1271. checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690"
  1272. [[package]]
  1273. name = "diesel"
  1274. version = "1.4.8"
  1275. source = "registry+https://github.com/rust-lang/crates.io-index"
  1276. checksum = "b28135ecf6b7d446b43e27e225622a038cc4e2930a1022f51cdb97ada19b8e4d"
  1277. dependencies = [
  1278. "byteorder",
  1279. "diesel_derives",
  1280. "libsqlite3-sys",
  1281. ]
  1282. [[package]]
  1283. name = "diesel_derives"
  1284. version = "1.4.1"
  1285. source = "registry+https://github.com/rust-lang/crates.io-index"
  1286. checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3"
  1287. dependencies = [
  1288. "proc-macro2",
  1289. "quote",
  1290. "syn 1.0.109",
  1291. ]
  1292. [[package]]
  1293. name = "diesel_migrations"
  1294. version = "1.4.0"
  1295. source = "registry+https://github.com/rust-lang/crates.io-index"
  1296. checksum = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c"
  1297. dependencies = [
  1298. "migrations_internals",
  1299. "migrations_macros",
  1300. ]
  1301. [[package]]
  1302. name = "digest"
  1303. version = "0.9.0"
  1304. source = "registry+https://github.com/rust-lang/crates.io-index"
  1305. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  1306. dependencies = [
  1307. "generic-array",
  1308. ]
  1309. [[package]]
  1310. name = "digest"
  1311. version = "0.10.6"
  1312. source = "registry+https://github.com/rust-lang/crates.io-index"
  1313. checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
  1314. dependencies = [
  1315. "block-buffer 0.10.4",
  1316. "crypto-common",
  1317. "subtle",
  1318. ]
  1319. [[package]]
  1320. name = "dirs-next"
  1321. version = "2.0.0"
  1322. source = "registry+https://github.com/rust-lang/crates.io-index"
  1323. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  1324. dependencies = [
  1325. "cfg-if",
  1326. "dirs-sys-next",
  1327. ]
  1328. [[package]]
  1329. name = "dirs-sys-next"
  1330. version = "0.1.2"
  1331. source = "registry+https://github.com/rust-lang/crates.io-index"
  1332. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  1333. dependencies = [
  1334. "libc",
  1335. "redox_users",
  1336. "winapi",
  1337. ]
  1338. [[package]]
  1339. name = "dotenv"
  1340. version = "0.15.0"
  1341. source = "registry+https://github.com/rust-lang/crates.io-index"
  1342. checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
  1343. [[package]]
  1344. name = "dyn-clone"
  1345. version = "1.0.11"
  1346. source = "registry+https://github.com/rust-lang/crates.io-index"
  1347. checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
  1348. [[package]]
  1349. name = "either"
  1350. version = "1.8.1"
  1351. source = "registry+https://github.com/rust-lang/crates.io-index"
  1352. checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
  1353. [[package]]
  1354. name = "encode_unicode"
  1355. version = "0.3.6"
  1356. source = "registry+https://github.com/rust-lang/crates.io-index"
  1357. checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
  1358. [[package]]
  1359. name = "encoding_rs"
  1360. version = "0.8.32"
  1361. source = "registry+https://github.com/rust-lang/crates.io-index"
  1362. checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
  1363. dependencies = [
  1364. "cfg-if",
  1365. ]
  1366. [[package]]
  1367. name = "env_logger"
  1368. version = "0.8.4"
  1369. source = "registry+https://github.com/rust-lang/crates.io-index"
  1370. checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
  1371. dependencies = [
  1372. "log",
  1373. "regex",
  1374. ]
  1375. [[package]]
  1376. name = "equivalent"
  1377. version = "1.0.0"
  1378. source = "registry+https://github.com/rust-lang/crates.io-index"
  1379. checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1"
  1380. [[package]]
  1381. name = "errno"
  1382. version = "0.3.1"
  1383. source = "registry+https://github.com/rust-lang/crates.io-index"
  1384. checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
  1385. dependencies = [
  1386. "errno-dragonfly",
  1387. "libc",
  1388. "windows-sys 0.48.0",
  1389. ]
  1390. [[package]]
  1391. name = "errno-dragonfly"
  1392. version = "0.1.2"
  1393. source = "registry+https://github.com/rust-lang/crates.io-index"
  1394. checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
  1395. dependencies = [
  1396. "cc",
  1397. "libc",
  1398. ]
  1399. [[package]]
  1400. name = "error-chain"
  1401. version = "0.12.0"
  1402. source = "registry+https://github.com/rust-lang/crates.io-index"
  1403. checksum = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02"
  1404. dependencies = [
  1405. "backtrace",
  1406. ]
  1407. [[package]]
  1408. name = "faccess"
  1409. version = "0.2.4"
  1410. source = "registry+https://github.com/rust-lang/crates.io-index"
  1411. checksum = "59ae66425802d6a903e268ae1a08b8c38ba143520f227a205edf4e9c7e3e26d5"
  1412. dependencies = [
  1413. "bitflags",
  1414. "libc",
  1415. "winapi",
  1416. ]
  1417. [[package]]
  1418. name = "fake"
  1419. version = "2.5.0"
  1420. source = "registry+https://github.com/rust-lang/crates.io-index"
  1421. checksum = "4d68f517805463f3a896a9d29c1d6ff09d3579ded64a7201b4069f8f9c0d52fd"
  1422. dependencies = [
  1423. "rand 0.8.5",
  1424. ]
  1425. [[package]]
  1426. name = "fallible-iterator"
  1427. version = "0.2.0"
  1428. source = "registry+https://github.com/rust-lang/crates.io-index"
  1429. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  1430. [[package]]
  1431. name = "fancy-regex"
  1432. version = "0.10.0"
  1433. source = "registry+https://github.com/rust-lang/crates.io-index"
  1434. checksum = "0678ab2d46fa5195aaf59ad034c083d351377d4af57f3e073c074d0da3e3c766"
  1435. dependencies = [
  1436. "bit-set",
  1437. "regex",
  1438. ]
  1439. [[package]]
  1440. name = "fancy-regex"
  1441. version = "0.11.0"
  1442. source = "registry+https://github.com/rust-lang/crates.io-index"
  1443. checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
  1444. dependencies = [
  1445. "bit-set",
  1446. "regex",
  1447. ]
  1448. [[package]]
  1449. name = "fastrand"
  1450. version = "1.9.0"
  1451. source = "registry+https://github.com/rust-lang/crates.io-index"
  1452. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  1453. dependencies = [
  1454. "instant",
  1455. ]
  1456. [[package]]
  1457. name = "flate2"
  1458. version = "1.0.25"
  1459. source = "registry+https://github.com/rust-lang/crates.io-index"
  1460. checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
  1461. dependencies = [
  1462. "crc32fast",
  1463. "miniz_oxide",
  1464. ]
  1465. [[package]]
  1466. name = "flowy-ast"
  1467. version = "0.1.0"
  1468. dependencies = [
  1469. "proc-macro2",
  1470. "quote",
  1471. "syn 1.0.109",
  1472. ]
  1473. [[package]]
  1474. name = "flowy-codegen"
  1475. version = "0.1.0"
  1476. dependencies = [
  1477. "cmd_lib",
  1478. "console",
  1479. "fancy-regex 0.10.0",
  1480. "flowy-ast",
  1481. "itertools",
  1482. "lazy_static",
  1483. "log",
  1484. "phf 0.8.0",
  1485. "protoc-bin-vendored",
  1486. "protoc-rust",
  1487. "quote",
  1488. "serde",
  1489. "serde_json",
  1490. "similar 1.3.0",
  1491. "syn 1.0.109",
  1492. "tera",
  1493. "toml 0.5.11",
  1494. "walkdir",
  1495. ]
  1496. [[package]]
  1497. name = "flowy-config"
  1498. version = "0.1.0"
  1499. dependencies = [
  1500. "appflowy-integrate",
  1501. "bytes",
  1502. "flowy-codegen",
  1503. "flowy-derive",
  1504. "flowy-error",
  1505. "flowy-server",
  1506. "flowy-sqlite",
  1507. "lib-dispatch",
  1508. "protobuf",
  1509. "strum_macros",
  1510. ]
  1511. [[package]]
  1512. name = "flowy-core"
  1513. version = "0.1.0"
  1514. dependencies = [
  1515. "appflowy-integrate",
  1516. "bytes",
  1517. "console-subscriber",
  1518. "diesel",
  1519. "flowy-config",
  1520. "flowy-database2",
  1521. "flowy-document2",
  1522. "flowy-error",
  1523. "flowy-folder2",
  1524. "flowy-net",
  1525. "flowy-server",
  1526. "flowy-sqlite",
  1527. "flowy-task",
  1528. "flowy-user",
  1529. "futures-core",
  1530. "lib-dispatch",
  1531. "lib-infra",
  1532. "lib-log",
  1533. "lib-ws",
  1534. "parking_lot 0.12.1",
  1535. "serde",
  1536. "serde_json",
  1537. "serde_repr",
  1538. "tokio",
  1539. "tracing",
  1540. "uuid",
  1541. ]
  1542. [[package]]
  1543. name = "flowy-database2"
  1544. version = "0.1.0"
  1545. dependencies = [
  1546. "anyhow",
  1547. "appflowy-integrate",
  1548. "async-stream",
  1549. "async-trait",
  1550. "bytes",
  1551. "chrono",
  1552. "chrono-tz 0.8.2",
  1553. "collab",
  1554. "collab-database",
  1555. "csv",
  1556. "dashmap",
  1557. "fancy-regex 0.10.0",
  1558. "flowy-codegen",
  1559. "flowy-derive",
  1560. "flowy-error",
  1561. "flowy-notification",
  1562. "flowy-task",
  1563. "flowy-test",
  1564. "futures",
  1565. "indexmap 1.9.3",
  1566. "lazy_static",
  1567. "lib-dispatch",
  1568. "lib-infra",
  1569. "nanoid",
  1570. "parking_lot 0.12.1",
  1571. "protobuf",
  1572. "rayon",
  1573. "rust_decimal",
  1574. "rusty-money",
  1575. "serde",
  1576. "serde_json",
  1577. "serde_repr",
  1578. "strum",
  1579. "strum_macros",
  1580. "tokio",
  1581. "tracing",
  1582. "url",
  1583. ]
  1584. [[package]]
  1585. name = "flowy-derive"
  1586. version = "0.1.0"
  1587. dependencies = [
  1588. "dashmap",
  1589. "flowy-ast",
  1590. "flowy-codegen",
  1591. "lazy_static",
  1592. "proc-macro2",
  1593. "quote",
  1594. "serde_json",
  1595. "syn 1.0.109",
  1596. "walkdir",
  1597. ]
  1598. [[package]]
  1599. name = "flowy-document2"
  1600. version = "0.1.0"
  1601. dependencies = [
  1602. "anyhow",
  1603. "appflowy-integrate",
  1604. "bytes",
  1605. "collab",
  1606. "collab-document",
  1607. "flowy-codegen",
  1608. "flowy-derive",
  1609. "flowy-error",
  1610. "flowy-notification",
  1611. "futures",
  1612. "indexmap 1.9.3",
  1613. "lib-dispatch",
  1614. "lib-infra",
  1615. "nanoid",
  1616. "parking_lot 0.12.1",
  1617. "protobuf",
  1618. "serde",
  1619. "serde_json",
  1620. "strum",
  1621. "strum_macros",
  1622. "tempfile",
  1623. "tokio",
  1624. "tokio-stream",
  1625. "tracing",
  1626. "tracing-subscriber 0.3.16",
  1627. "uuid",
  1628. ]
  1629. [[package]]
  1630. name = "flowy-error"
  1631. version = "0.1.0"
  1632. dependencies = [
  1633. "anyhow",
  1634. "bytes",
  1635. "collab-database",
  1636. "collab-document",
  1637. "flowy-codegen",
  1638. "flowy-derive",
  1639. "flowy-sqlite",
  1640. "http-error-code",
  1641. "lib-dispatch",
  1642. "protobuf",
  1643. "r2d2",
  1644. "reqwest",
  1645. "serde",
  1646. "serde_json",
  1647. "serde_repr",
  1648. "thiserror",
  1649. ]
  1650. [[package]]
  1651. name = "flowy-folder2"
  1652. version = "0.1.0"
  1653. dependencies = [
  1654. "appflowy-integrate",
  1655. "bytes",
  1656. "chrono",
  1657. "collab",
  1658. "collab-folder",
  1659. "flowy-codegen",
  1660. "flowy-derive",
  1661. "flowy-error",
  1662. "flowy-folder2",
  1663. "flowy-notification",
  1664. "flowy-test",
  1665. "lazy_static",
  1666. "lib-dispatch",
  1667. "lib-infra",
  1668. "nanoid",
  1669. "parking_lot 0.12.1",
  1670. "protobuf",
  1671. "strum",
  1672. "strum_macros",
  1673. "tokio",
  1674. "tokio-stream",
  1675. "tracing",
  1676. "unicode-segmentation",
  1677. "uuid",
  1678. ]
  1679. [[package]]
  1680. name = "flowy-net"
  1681. version = "0.1.0"
  1682. dependencies = [
  1683. "anyhow",
  1684. "bytes",
  1685. "flowy-codegen",
  1686. "flowy-derive",
  1687. "flowy-error",
  1688. "lib-dispatch",
  1689. "protobuf",
  1690. "strum_macros",
  1691. "thiserror",
  1692. "tracing",
  1693. ]
  1694. [[package]]
  1695. name = "flowy-notification"
  1696. version = "0.1.0"
  1697. dependencies = [
  1698. "bytes",
  1699. "flowy-codegen",
  1700. "flowy-derive",
  1701. "lazy_static",
  1702. "lib-dispatch",
  1703. "protobuf",
  1704. "serde",
  1705. "tracing",
  1706. ]
  1707. [[package]]
  1708. name = "flowy-server"
  1709. version = "0.1.0"
  1710. dependencies = [
  1711. "anyhow",
  1712. "appflowy-integrate",
  1713. "async-stream",
  1714. "bytes",
  1715. "chrono",
  1716. "config",
  1717. "deadpool-postgres",
  1718. "dotenv",
  1719. "flowy-database2",
  1720. "flowy-document2",
  1721. "flowy-error",
  1722. "flowy-folder2",
  1723. "flowy-user",
  1724. "futures",
  1725. "futures-util",
  1726. "hyper",
  1727. "lazy_static",
  1728. "lib-infra",
  1729. "nanoid",
  1730. "parking_lot 0.12.1",
  1731. "postgrest",
  1732. "refinery",
  1733. "reqwest",
  1734. "serde",
  1735. "serde-aux",
  1736. "serde_json",
  1737. "thiserror",
  1738. "tokio",
  1739. "tokio-postgres",
  1740. "tokio-retry",
  1741. "tracing",
  1742. "tracing-subscriber 0.3.16",
  1743. "uuid",
  1744. ]
  1745. [[package]]
  1746. name = "flowy-sqlite"
  1747. version = "0.1.0"
  1748. dependencies = [
  1749. "anyhow",
  1750. "diesel",
  1751. "diesel_derives",
  1752. "diesel_migrations",
  1753. "error-chain",
  1754. "lazy_static",
  1755. "libsqlite3-sys",
  1756. "openssl",
  1757. "openssl-sys",
  1758. "parking_lot 0.12.1",
  1759. "r2d2",
  1760. "scheduled-thread-pool",
  1761. "serde",
  1762. "serde_json",
  1763. "tempfile",
  1764. "tracing",
  1765. ]
  1766. [[package]]
  1767. name = "flowy-task"
  1768. version = "0.1.0"
  1769. dependencies = [
  1770. "anyhow",
  1771. "atomic_refcell",
  1772. "futures",
  1773. "lib-infra",
  1774. "rand 0.8.5",
  1775. "tokio",
  1776. "tracing",
  1777. ]
  1778. [[package]]
  1779. name = "flowy-test"
  1780. version = "0.1.0"
  1781. dependencies = [
  1782. "anyhow",
  1783. "assert-json-diff",
  1784. "bytes",
  1785. "collab",
  1786. "collab-database",
  1787. "collab-document",
  1788. "collab-folder",
  1789. "dotenv",
  1790. "flowy-core",
  1791. "flowy-database2",
  1792. "flowy-document2",
  1793. "flowy-folder2",
  1794. "flowy-net",
  1795. "flowy-notification",
  1796. "flowy-server",
  1797. "flowy-user",
  1798. "futures-util",
  1799. "lib-dispatch",
  1800. "lib-infra",
  1801. "lib-ot",
  1802. "nanoid",
  1803. "parking_lot 0.12.1",
  1804. "protobuf",
  1805. "serde",
  1806. "serde_json",
  1807. "tempdir",
  1808. "thread-id",
  1809. "tokio",
  1810. "tracing",
  1811. "uuid",
  1812. ]
  1813. [[package]]
  1814. name = "flowy-user"
  1815. version = "0.1.0"
  1816. dependencies = [
  1817. "appflowy-integrate",
  1818. "bytes",
  1819. "diesel",
  1820. "diesel_derives",
  1821. "fake",
  1822. "fancy-regex 0.11.0",
  1823. "flowy-codegen",
  1824. "flowy-derive",
  1825. "flowy-error",
  1826. "flowy-notification",
  1827. "flowy-sqlite",
  1828. "lazy_static",
  1829. "lib-dispatch",
  1830. "lib-infra",
  1831. "log",
  1832. "nanoid",
  1833. "once_cell",
  1834. "parking_lot 0.12.1",
  1835. "protobuf",
  1836. "quickcheck",
  1837. "quickcheck_macros",
  1838. "rand 0.8.5",
  1839. "rand_core 0.6.4",
  1840. "serde",
  1841. "serde_json",
  1842. "serde_repr",
  1843. "strum",
  1844. "strum_macros",
  1845. "tokio",
  1846. "tracing",
  1847. "unicode-segmentation",
  1848. "validator",
  1849. ]
  1850. [[package]]
  1851. name = "fnv"
  1852. version = "1.0.7"
  1853. source = "registry+https://github.com/rust-lang/crates.io-index"
  1854. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1855. [[package]]
  1856. name = "foreign-types"
  1857. version = "0.3.2"
  1858. source = "registry+https://github.com/rust-lang/crates.io-index"
  1859. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1860. dependencies = [
  1861. "foreign-types-shared",
  1862. ]
  1863. [[package]]
  1864. name = "foreign-types-shared"
  1865. version = "0.1.1"
  1866. source = "registry+https://github.com/rust-lang/crates.io-index"
  1867. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1868. [[package]]
  1869. name = "form_urlencoded"
  1870. version = "1.1.0"
  1871. source = "registry+https://github.com/rust-lang/crates.io-index"
  1872. checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
  1873. dependencies = [
  1874. "percent-encoding",
  1875. ]
  1876. [[package]]
  1877. name = "fs2"
  1878. version = "0.4.3"
  1879. source = "registry+https://github.com/rust-lang/crates.io-index"
  1880. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  1881. dependencies = [
  1882. "libc",
  1883. "winapi",
  1884. ]
  1885. [[package]]
  1886. name = "fuchsia-cprng"
  1887. version = "0.1.1"
  1888. source = "registry+https://github.com/rust-lang/crates.io-index"
  1889. checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
  1890. [[package]]
  1891. name = "futures"
  1892. version = "0.3.28"
  1893. source = "registry+https://github.com/rust-lang/crates.io-index"
  1894. checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
  1895. dependencies = [
  1896. "futures-channel",
  1897. "futures-core",
  1898. "futures-executor",
  1899. "futures-io",
  1900. "futures-sink",
  1901. "futures-task",
  1902. "futures-util",
  1903. ]
  1904. [[package]]
  1905. name = "futures-channel"
  1906. version = "0.3.28"
  1907. source = "registry+https://github.com/rust-lang/crates.io-index"
  1908. checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
  1909. dependencies = [
  1910. "futures-core",
  1911. "futures-sink",
  1912. ]
  1913. [[package]]
  1914. name = "futures-core"
  1915. version = "0.3.28"
  1916. source = "registry+https://github.com/rust-lang/crates.io-index"
  1917. checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
  1918. [[package]]
  1919. name = "futures-executor"
  1920. version = "0.3.28"
  1921. source = "registry+https://github.com/rust-lang/crates.io-index"
  1922. checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
  1923. dependencies = [
  1924. "futures-core",
  1925. "futures-task",
  1926. "futures-util",
  1927. ]
  1928. [[package]]
  1929. name = "futures-io"
  1930. version = "0.3.28"
  1931. source = "registry+https://github.com/rust-lang/crates.io-index"
  1932. checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
  1933. [[package]]
  1934. name = "futures-macro"
  1935. version = "0.3.28"
  1936. source = "registry+https://github.com/rust-lang/crates.io-index"
  1937. checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
  1938. dependencies = [
  1939. "proc-macro2",
  1940. "quote",
  1941. "syn 2.0.16",
  1942. ]
  1943. [[package]]
  1944. name = "futures-sink"
  1945. version = "0.3.28"
  1946. source = "registry+https://github.com/rust-lang/crates.io-index"
  1947. checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
  1948. [[package]]
  1949. name = "futures-task"
  1950. version = "0.3.28"
  1951. source = "registry+https://github.com/rust-lang/crates.io-index"
  1952. checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
  1953. [[package]]
  1954. name = "futures-util"
  1955. version = "0.3.28"
  1956. source = "registry+https://github.com/rust-lang/crates.io-index"
  1957. checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
  1958. dependencies = [
  1959. "futures-channel",
  1960. "futures-core",
  1961. "futures-io",
  1962. "futures-macro",
  1963. "futures-sink",
  1964. "futures-task",
  1965. "memchr",
  1966. "pin-project-lite",
  1967. "pin-utils",
  1968. "slab",
  1969. ]
  1970. [[package]]
  1971. name = "fxhash"
  1972. version = "0.2.1"
  1973. source = "registry+https://github.com/rust-lang/crates.io-index"
  1974. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  1975. dependencies = [
  1976. "byteorder",
  1977. ]
  1978. [[package]]
  1979. name = "generic-array"
  1980. version = "0.14.7"
  1981. source = "registry+https://github.com/rust-lang/crates.io-index"
  1982. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  1983. dependencies = [
  1984. "typenum",
  1985. "version_check",
  1986. ]
  1987. [[package]]
  1988. name = "gethostname"
  1989. version = "0.2.3"
  1990. source = "registry+https://github.com/rust-lang/crates.io-index"
  1991. checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
  1992. dependencies = [
  1993. "libc",
  1994. "winapi",
  1995. ]
  1996. [[package]]
  1997. name = "getrandom"
  1998. version = "0.1.16"
  1999. source = "registry+https://github.com/rust-lang/crates.io-index"
  2000. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  2001. dependencies = [
  2002. "cfg-if",
  2003. "js-sys",
  2004. "libc",
  2005. "wasi 0.9.0+wasi-snapshot-preview1",
  2006. "wasm-bindgen",
  2007. ]
  2008. [[package]]
  2009. name = "getrandom"
  2010. version = "0.2.9"
  2011. source = "registry+https://github.com/rust-lang/crates.io-index"
  2012. checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
  2013. dependencies = [
  2014. "cfg-if",
  2015. "libc",
  2016. "wasi 0.11.0+wasi-snapshot-preview1",
  2017. ]
  2018. [[package]]
  2019. name = "gimli"
  2020. version = "0.27.2"
  2021. source = "registry+https://github.com/rust-lang/crates.io-index"
  2022. checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
  2023. [[package]]
  2024. name = "glob"
  2025. version = "0.3.1"
  2026. source = "registry+https://github.com/rust-lang/crates.io-index"
  2027. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  2028. [[package]]
  2029. name = "globset"
  2030. version = "0.4.10"
  2031. source = "registry+https://github.com/rust-lang/crates.io-index"
  2032. checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
  2033. dependencies = [
  2034. "aho-corasick",
  2035. "bstr",
  2036. "fnv",
  2037. "log",
  2038. "regex",
  2039. ]
  2040. [[package]]
  2041. name = "globwalk"
  2042. version = "0.8.1"
  2043. source = "registry+https://github.com/rust-lang/crates.io-index"
  2044. checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
  2045. dependencies = [
  2046. "bitflags",
  2047. "ignore",
  2048. "walkdir",
  2049. ]
  2050. [[package]]
  2051. name = "h2"
  2052. version = "0.3.17"
  2053. source = "registry+https://github.com/rust-lang/crates.io-index"
  2054. checksum = "66b91535aa35fea1523ad1b86cb6b53c28e0ae566ba4a460f4457e936cad7c6f"
  2055. dependencies = [
  2056. "bytes",
  2057. "fnv",
  2058. "futures-core",
  2059. "futures-sink",
  2060. "futures-util",
  2061. "http",
  2062. "indexmap 1.9.3",
  2063. "slab",
  2064. "tokio",
  2065. "tokio-util",
  2066. "tracing",
  2067. ]
  2068. [[package]]
  2069. name = "hashbrown"
  2070. version = "0.12.3"
  2071. source = "registry+https://github.com/rust-lang/crates.io-index"
  2072. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2073. dependencies = [
  2074. "ahash 0.7.6",
  2075. ]
  2076. [[package]]
  2077. name = "hashbrown"
  2078. version = "0.13.2"
  2079. source = "registry+https://github.com/rust-lang/crates.io-index"
  2080. checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
  2081. dependencies = [
  2082. "ahash 0.8.3",
  2083. ]
  2084. [[package]]
  2085. name = "hashbrown"
  2086. version = "0.14.0"
  2087. source = "registry+https://github.com/rust-lang/crates.io-index"
  2088. checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
  2089. [[package]]
  2090. name = "hdrhistogram"
  2091. version = "7.5.2"
  2092. source = "registry+https://github.com/rust-lang/crates.io-index"
  2093. checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
  2094. dependencies = [
  2095. "base64 0.13.1",
  2096. "byteorder",
  2097. "flate2",
  2098. "nom 7.1.3",
  2099. "num-traits",
  2100. ]
  2101. [[package]]
  2102. name = "heck"
  2103. version = "0.3.3"
  2104. source = "registry+https://github.com/rust-lang/crates.io-index"
  2105. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  2106. dependencies = [
  2107. "unicode-segmentation",
  2108. ]
  2109. [[package]]
  2110. name = "hermit-abi"
  2111. version = "0.2.6"
  2112. source = "registry+https://github.com/rust-lang/crates.io-index"
  2113. checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
  2114. dependencies = [
  2115. "libc",
  2116. ]
  2117. [[package]]
  2118. name = "hermit-abi"
  2119. version = "0.3.1"
  2120. source = "registry+https://github.com/rust-lang/crates.io-index"
  2121. checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
  2122. [[package]]
  2123. name = "hex"
  2124. version = "0.4.3"
  2125. source = "registry+https://github.com/rust-lang/crates.io-index"
  2126. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2127. [[package]]
  2128. name = "hmac"
  2129. version = "0.12.1"
  2130. source = "registry+https://github.com/rust-lang/crates.io-index"
  2131. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2132. dependencies = [
  2133. "digest 0.10.6",
  2134. ]
  2135. [[package]]
  2136. name = "http"
  2137. version = "0.2.9"
  2138. source = "registry+https://github.com/rust-lang/crates.io-index"
  2139. checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
  2140. dependencies = [
  2141. "bytes",
  2142. "fnv",
  2143. "itoa",
  2144. ]
  2145. [[package]]
  2146. name = "http-body"
  2147. version = "0.4.5"
  2148. source = "registry+https://github.com/rust-lang/crates.io-index"
  2149. checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
  2150. dependencies = [
  2151. "bytes",
  2152. "http",
  2153. "pin-project-lite",
  2154. ]
  2155. [[package]]
  2156. name = "http-error-code"
  2157. version = "0.1.0"
  2158. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Server?branch=refactor/appflowy_server#1ccd296de8530760d92652dbd9f38f27178059b6"
  2159. dependencies = [
  2160. "serde",
  2161. "serde_repr",
  2162. "thiserror",
  2163. ]
  2164. [[package]]
  2165. name = "httparse"
  2166. version = "1.8.0"
  2167. source = "registry+https://github.com/rust-lang/crates.io-index"
  2168. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  2169. [[package]]
  2170. name = "httpdate"
  2171. version = "1.0.2"
  2172. source = "registry+https://github.com/rust-lang/crates.io-index"
  2173. checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
  2174. [[package]]
  2175. name = "humansize"
  2176. version = "2.1.3"
  2177. source = "registry+https://github.com/rust-lang/crates.io-index"
  2178. checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
  2179. dependencies = [
  2180. "libm",
  2181. ]
  2182. [[package]]
  2183. name = "humantime"
  2184. version = "2.1.0"
  2185. source = "registry+https://github.com/rust-lang/crates.io-index"
  2186. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  2187. [[package]]
  2188. name = "hyper"
  2189. version = "0.14.26"
  2190. source = "registry+https://github.com/rust-lang/crates.io-index"
  2191. checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
  2192. dependencies = [
  2193. "bytes",
  2194. "futures-channel",
  2195. "futures-core",
  2196. "futures-util",
  2197. "h2",
  2198. "http",
  2199. "http-body",
  2200. "httparse",
  2201. "httpdate",
  2202. "itoa",
  2203. "pin-project-lite",
  2204. "socket2 0.4.9",
  2205. "tokio",
  2206. "tower-service",
  2207. "tracing",
  2208. "want",
  2209. ]
  2210. [[package]]
  2211. name = "hyper-rustls"
  2212. version = "0.23.2"
  2213. source = "registry+https://github.com/rust-lang/crates.io-index"
  2214. checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
  2215. dependencies = [
  2216. "http",
  2217. "hyper",
  2218. "log",
  2219. "rustls",
  2220. "rustls-native-certs",
  2221. "tokio",
  2222. "tokio-rustls",
  2223. ]
  2224. [[package]]
  2225. name = "hyper-timeout"
  2226. version = "0.4.1"
  2227. source = "registry+https://github.com/rust-lang/crates.io-index"
  2228. checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
  2229. dependencies = [
  2230. "hyper",
  2231. "pin-project-lite",
  2232. "tokio",
  2233. "tokio-io-timeout",
  2234. ]
  2235. [[package]]
  2236. name = "hyper-tls"
  2237. version = "0.5.0"
  2238. source = "registry+https://github.com/rust-lang/crates.io-index"
  2239. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  2240. dependencies = [
  2241. "bytes",
  2242. "hyper",
  2243. "native-tls",
  2244. "tokio",
  2245. "tokio-native-tls",
  2246. ]
  2247. [[package]]
  2248. name = "iana-time-zone"
  2249. version = "0.1.56"
  2250. source = "registry+https://github.com/rust-lang/crates.io-index"
  2251. checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
  2252. dependencies = [
  2253. "android_system_properties",
  2254. "core-foundation-sys",
  2255. "iana-time-zone-haiku",
  2256. "js-sys",
  2257. "wasm-bindgen",
  2258. "windows",
  2259. ]
  2260. [[package]]
  2261. name = "iana-time-zone-haiku"
  2262. version = "0.1.1"
  2263. source = "registry+https://github.com/rust-lang/crates.io-index"
  2264. checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
  2265. dependencies = [
  2266. "cxx",
  2267. "cxx-build",
  2268. ]
  2269. [[package]]
  2270. name = "idna"
  2271. version = "0.2.3"
  2272. source = "registry+https://github.com/rust-lang/crates.io-index"
  2273. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  2274. dependencies = [
  2275. "matches",
  2276. "unicode-bidi",
  2277. "unicode-normalization",
  2278. ]
  2279. [[package]]
  2280. name = "idna"
  2281. version = "0.3.0"
  2282. source = "registry+https://github.com/rust-lang/crates.io-index"
  2283. checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
  2284. dependencies = [
  2285. "unicode-bidi",
  2286. "unicode-normalization",
  2287. ]
  2288. [[package]]
  2289. name = "ignore"
  2290. version = "0.4.20"
  2291. source = "registry+https://github.com/rust-lang/crates.io-index"
  2292. checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492"
  2293. dependencies = [
  2294. "globset",
  2295. "lazy_static",
  2296. "log",
  2297. "memchr",
  2298. "regex",
  2299. "same-file",
  2300. "thread_local",
  2301. "walkdir",
  2302. "winapi-util",
  2303. ]
  2304. [[package]]
  2305. name = "indexmap"
  2306. version = "1.9.3"
  2307. source = "registry+https://github.com/rust-lang/crates.io-index"
  2308. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2309. dependencies = [
  2310. "autocfg",
  2311. "hashbrown 0.12.3",
  2312. "serde",
  2313. ]
  2314. [[package]]
  2315. name = "indexmap"
  2316. version = "2.0.0"
  2317. source = "registry+https://github.com/rust-lang/crates.io-index"
  2318. checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
  2319. dependencies = [
  2320. "equivalent",
  2321. "hashbrown 0.14.0",
  2322. ]
  2323. [[package]]
  2324. name = "indextree"
  2325. version = "4.6.0"
  2326. source = "registry+https://github.com/rust-lang/crates.io-index"
  2327. checksum = "c40411d0e5c63ef1323c3d09ce5ec6d84d71531e18daed0743fccea279d7deb6"
  2328. [[package]]
  2329. name = "instant"
  2330. version = "0.1.12"
  2331. source = "registry+https://github.com/rust-lang/crates.io-index"
  2332. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  2333. dependencies = [
  2334. "cfg-if",
  2335. ]
  2336. [[package]]
  2337. name = "io-lifetimes"
  2338. version = "1.0.10"
  2339. source = "registry+https://github.com/rust-lang/crates.io-index"
  2340. checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
  2341. dependencies = [
  2342. "hermit-abi 0.3.1",
  2343. "libc",
  2344. "windows-sys 0.48.0",
  2345. ]
  2346. [[package]]
  2347. name = "ipnet"
  2348. version = "2.7.2"
  2349. source = "registry+https://github.com/rust-lang/crates.io-index"
  2350. checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
  2351. [[package]]
  2352. name = "itertools"
  2353. version = "0.10.5"
  2354. source = "registry+https://github.com/rust-lang/crates.io-index"
  2355. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  2356. dependencies = [
  2357. "either",
  2358. ]
  2359. [[package]]
  2360. name = "itoa"
  2361. version = "1.0.6"
  2362. source = "registry+https://github.com/rust-lang/crates.io-index"
  2363. checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
  2364. [[package]]
  2365. name = "jobserver"
  2366. version = "0.1.26"
  2367. source = "registry+https://github.com/rust-lang/crates.io-index"
  2368. checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
  2369. dependencies = [
  2370. "libc",
  2371. ]
  2372. [[package]]
  2373. name = "js-sys"
  2374. version = "0.3.61"
  2375. source = "registry+https://github.com/rust-lang/crates.io-index"
  2376. checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
  2377. dependencies = [
  2378. "wasm-bindgen",
  2379. ]
  2380. [[package]]
  2381. name = "lazy_static"
  2382. version = "1.4.0"
  2383. source = "registry+https://github.com/rust-lang/crates.io-index"
  2384. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  2385. [[package]]
  2386. name = "lazycell"
  2387. version = "1.3.0"
  2388. source = "registry+https://github.com/rust-lang/crates.io-index"
  2389. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  2390. [[package]]
  2391. name = "lexical-core"
  2392. version = "0.7.6"
  2393. source = "registry+https://github.com/rust-lang/crates.io-index"
  2394. checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
  2395. dependencies = [
  2396. "arrayvec 0.5.2",
  2397. "bitflags",
  2398. "cfg-if",
  2399. "ryu",
  2400. "static_assertions",
  2401. ]
  2402. [[package]]
  2403. name = "lib-dispatch"
  2404. version = "0.1.0"
  2405. dependencies = [
  2406. "bincode",
  2407. "bytes",
  2408. "derivative",
  2409. "dyn-clone",
  2410. "futures",
  2411. "futures-channel",
  2412. "futures-core",
  2413. "futures-util",
  2414. "log",
  2415. "nanoid",
  2416. "pin-project",
  2417. "protobuf",
  2418. "serde",
  2419. "serde_json",
  2420. "serde_repr",
  2421. "thread-id",
  2422. "tokio",
  2423. "tracing",
  2424. ]
  2425. [[package]]
  2426. name = "lib-infra"
  2427. version = "0.1.0"
  2428. dependencies = [
  2429. "anyhow",
  2430. "async-trait",
  2431. "bytes",
  2432. "chrono",
  2433. "futures-core",
  2434. "md5",
  2435. "pin-project",
  2436. "rand 0.8.5",
  2437. "tokio",
  2438. ]
  2439. [[package]]
  2440. name = "lib-log"
  2441. version = "0.1.0"
  2442. dependencies = [
  2443. "chrono",
  2444. "lazy_static",
  2445. "log",
  2446. "serde",
  2447. "serde_json",
  2448. "tracing",
  2449. "tracing-appender",
  2450. "tracing-bunyan-formatter",
  2451. "tracing-core",
  2452. "tracing-log",
  2453. "tracing-subscriber 0.2.25",
  2454. ]
  2455. [[package]]
  2456. name = "lib-ot"
  2457. version = "0.1.0"
  2458. dependencies = [
  2459. "bytes",
  2460. "indexmap 1.9.3",
  2461. "indextree",
  2462. "lazy_static",
  2463. "log",
  2464. "serde",
  2465. "serde_json",
  2466. "strum",
  2467. "strum_macros",
  2468. "thiserror",
  2469. "tracing",
  2470. ]
  2471. [[package]]
  2472. name = "lib-ws"
  2473. version = "0.1.0"
  2474. dependencies = [
  2475. "bytes",
  2476. "dashmap",
  2477. "futures",
  2478. "futures-channel",
  2479. "futures-core",
  2480. "futures-util",
  2481. "lib-infra",
  2482. "log",
  2483. "parking_lot 0.12.1",
  2484. "pin-project",
  2485. "protobuf",
  2486. "serde",
  2487. "serde_json",
  2488. "serde_repr",
  2489. "strum_macros",
  2490. "tokio",
  2491. "tokio-tungstenite 0.15.0",
  2492. "tracing",
  2493. "url",
  2494. ]
  2495. [[package]]
  2496. name = "lib0"
  2497. version = "0.16.5"
  2498. source = "registry+https://github.com/rust-lang/crates.io-index"
  2499. checksum = "daf23122cb1c970b77ea6030eac5e328669415b65d2ab245c99bfb110f9d62dc"
  2500. dependencies = [
  2501. "serde",
  2502. "serde_json",
  2503. "thiserror",
  2504. ]
  2505. [[package]]
  2506. name = "libc"
  2507. version = "0.2.141"
  2508. source = "registry+https://github.com/rust-lang/crates.io-index"
  2509. checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
  2510. [[package]]
  2511. name = "libloading"
  2512. version = "0.7.4"
  2513. source = "registry+https://github.com/rust-lang/crates.io-index"
  2514. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  2515. dependencies = [
  2516. "cfg-if",
  2517. "winapi",
  2518. ]
  2519. [[package]]
  2520. name = "libm"
  2521. version = "0.2.6"
  2522. source = "registry+https://github.com/rust-lang/crates.io-index"
  2523. checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
  2524. [[package]]
  2525. name = "librocksdb-sys"
  2526. version = "0.11.0+8.1.1"
  2527. source = "registry+https://github.com/rust-lang/crates.io-index"
  2528. checksum = "d3386f101bcb4bd252d8e9d2fb41ec3b0862a15a62b478c355b2982efa469e3e"
  2529. dependencies = [
  2530. "bindgen",
  2531. "bzip2-sys",
  2532. "cc",
  2533. "glob",
  2534. "libc",
  2535. "libz-sys",
  2536. "zstd-sys",
  2537. ]
  2538. [[package]]
  2539. name = "libsqlite3-sys"
  2540. version = "0.22.2"
  2541. source = "registry+https://github.com/rust-lang/crates.io-index"
  2542. checksum = "290b64917f8b0cb885d9de0f9959fe1f775d7fa12f1da2db9001c1c8ab60f89d"
  2543. dependencies = [
  2544. "cc",
  2545. "pkg-config",
  2546. "vcpkg",
  2547. ]
  2548. [[package]]
  2549. name = "libz-sys"
  2550. version = "1.1.8"
  2551. source = "registry+https://github.com/rust-lang/crates.io-index"
  2552. checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
  2553. dependencies = [
  2554. "cc",
  2555. "pkg-config",
  2556. "vcpkg",
  2557. ]
  2558. [[package]]
  2559. name = "link-cplusplus"
  2560. version = "1.0.8"
  2561. source = "registry+https://github.com/rust-lang/crates.io-index"
  2562. checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
  2563. dependencies = [
  2564. "cc",
  2565. ]
  2566. [[package]]
  2567. name = "linked-hash-map"
  2568. version = "0.5.6"
  2569. source = "registry+https://github.com/rust-lang/crates.io-index"
  2570. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  2571. [[package]]
  2572. name = "linux-raw-sys"
  2573. version = "0.3.1"
  2574. source = "registry+https://github.com/rust-lang/crates.io-index"
  2575. checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f"
  2576. [[package]]
  2577. name = "lock_api"
  2578. version = "0.4.9"
  2579. source = "registry+https://github.com/rust-lang/crates.io-index"
  2580. checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
  2581. dependencies = [
  2582. "autocfg",
  2583. "scopeguard",
  2584. ]
  2585. [[package]]
  2586. name = "log"
  2587. version = "0.4.17"
  2588. source = "registry+https://github.com/rust-lang/crates.io-index"
  2589. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  2590. dependencies = [
  2591. "cfg-if",
  2592. ]
  2593. [[package]]
  2594. name = "lru"
  2595. version = "0.10.0"
  2596. source = "registry+https://github.com/rust-lang/crates.io-index"
  2597. checksum = "03f1160296536f10c833a82dca22267d5486734230d47bf00bf435885814ba1e"
  2598. dependencies = [
  2599. "hashbrown 0.13.2",
  2600. ]
  2601. [[package]]
  2602. name = "matchers"
  2603. version = "0.0.1"
  2604. source = "registry+https://github.com/rust-lang/crates.io-index"
  2605. checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
  2606. dependencies = [
  2607. "regex-automata",
  2608. ]
  2609. [[package]]
  2610. name = "matchers"
  2611. version = "0.1.0"
  2612. source = "registry+https://github.com/rust-lang/crates.io-index"
  2613. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  2614. dependencies = [
  2615. "regex-automata",
  2616. ]
  2617. [[package]]
  2618. name = "matches"
  2619. version = "0.1.10"
  2620. source = "registry+https://github.com/rust-lang/crates.io-index"
  2621. checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
  2622. [[package]]
  2623. name = "matchit"
  2624. version = "0.7.0"
  2625. source = "registry+https://github.com/rust-lang/crates.io-index"
  2626. checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
  2627. [[package]]
  2628. name = "md-5"
  2629. version = "0.10.5"
  2630. source = "registry+https://github.com/rust-lang/crates.io-index"
  2631. checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
  2632. dependencies = [
  2633. "digest 0.10.6",
  2634. ]
  2635. [[package]]
  2636. name = "md5"
  2637. version = "0.7.0"
  2638. source = "registry+https://github.com/rust-lang/crates.io-index"
  2639. checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
  2640. [[package]]
  2641. name = "memchr"
  2642. version = "2.5.0"
  2643. source = "registry+https://github.com/rust-lang/crates.io-index"
  2644. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  2645. [[package]]
  2646. name = "memoffset"
  2647. version = "0.8.0"
  2648. source = "registry+https://github.com/rust-lang/crates.io-index"
  2649. checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
  2650. dependencies = [
  2651. "autocfg",
  2652. ]
  2653. [[package]]
  2654. name = "migrations_internals"
  2655. version = "1.4.1"
  2656. source = "registry+https://github.com/rust-lang/crates.io-index"
  2657. checksum = "2b4fc84e4af020b837029e017966f86a1c2d5e83e64b589963d5047525995860"
  2658. dependencies = [
  2659. "diesel",
  2660. ]
  2661. [[package]]
  2662. name = "migrations_macros"
  2663. version = "1.4.2"
  2664. source = "registry+https://github.com/rust-lang/crates.io-index"
  2665. checksum = "9753f12909fd8d923f75ae5c3258cae1ed3c8ec052e1b38c93c21a6d157f789c"
  2666. dependencies = [
  2667. "migrations_internals",
  2668. "proc-macro2",
  2669. "quote",
  2670. "syn 1.0.109",
  2671. ]
  2672. [[package]]
  2673. name = "mime"
  2674. version = "0.3.17"
  2675. source = "registry+https://github.com/rust-lang/crates.io-index"
  2676. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  2677. [[package]]
  2678. name = "minimal-lexical"
  2679. version = "0.2.1"
  2680. source = "registry+https://github.com/rust-lang/crates.io-index"
  2681. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2682. [[package]]
  2683. name = "miniz_oxide"
  2684. version = "0.6.2"
  2685. source = "registry+https://github.com/rust-lang/crates.io-index"
  2686. checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
  2687. dependencies = [
  2688. "adler",
  2689. ]
  2690. [[package]]
  2691. name = "mio"
  2692. version = "0.8.6"
  2693. source = "registry+https://github.com/rust-lang/crates.io-index"
  2694. checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
  2695. dependencies = [
  2696. "libc",
  2697. "log",
  2698. "wasi 0.11.0+wasi-snapshot-preview1",
  2699. "windows-sys 0.45.0",
  2700. ]
  2701. [[package]]
  2702. name = "nanoid"
  2703. version = "0.4.0"
  2704. source = "registry+https://github.com/rust-lang/crates.io-index"
  2705. checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
  2706. dependencies = [
  2707. "rand 0.8.5",
  2708. ]
  2709. [[package]]
  2710. name = "native-tls"
  2711. version = "0.2.11"
  2712. source = "registry+https://github.com/rust-lang/crates.io-index"
  2713. checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
  2714. dependencies = [
  2715. "lazy_static",
  2716. "libc",
  2717. "log",
  2718. "openssl",
  2719. "openssl-probe",
  2720. "openssl-sys",
  2721. "schannel",
  2722. "security-framework",
  2723. "security-framework-sys",
  2724. "tempfile",
  2725. ]
  2726. [[package]]
  2727. name = "nom"
  2728. version = "5.1.2"
  2729. source = "registry+https://github.com/rust-lang/crates.io-index"
  2730. checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
  2731. dependencies = [
  2732. "lexical-core",
  2733. "memchr",
  2734. "version_check",
  2735. ]
  2736. [[package]]
  2737. name = "nom"
  2738. version = "7.1.3"
  2739. source = "registry+https://github.com/rust-lang/crates.io-index"
  2740. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  2741. dependencies = [
  2742. "memchr",
  2743. "minimal-lexical",
  2744. ]
  2745. [[package]]
  2746. name = "nu-ansi-term"
  2747. version = "0.46.0"
  2748. source = "registry+https://github.com/rust-lang/crates.io-index"
  2749. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  2750. dependencies = [
  2751. "overload",
  2752. "winapi",
  2753. ]
  2754. [[package]]
  2755. name = "num-integer"
  2756. version = "0.1.45"
  2757. source = "registry+https://github.com/rust-lang/crates.io-index"
  2758. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  2759. dependencies = [
  2760. "autocfg",
  2761. "num-traits",
  2762. ]
  2763. [[package]]
  2764. name = "num-traits"
  2765. version = "0.2.15"
  2766. source = "registry+https://github.com/rust-lang/crates.io-index"
  2767. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  2768. dependencies = [
  2769. "autocfg",
  2770. ]
  2771. [[package]]
  2772. name = "num_cpus"
  2773. version = "1.15.0"
  2774. source = "registry+https://github.com/rust-lang/crates.io-index"
  2775. checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
  2776. dependencies = [
  2777. "hermit-abi 0.2.6",
  2778. "libc",
  2779. ]
  2780. [[package]]
  2781. name = "object"
  2782. version = "0.30.3"
  2783. source = "registry+https://github.com/rust-lang/crates.io-index"
  2784. checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
  2785. dependencies = [
  2786. "memchr",
  2787. ]
  2788. [[package]]
  2789. name = "once_cell"
  2790. version = "1.17.1"
  2791. source = "registry+https://github.com/rust-lang/crates.io-index"
  2792. checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
  2793. [[package]]
  2794. name = "opaque-debug"
  2795. version = "0.3.0"
  2796. source = "registry+https://github.com/rust-lang/crates.io-index"
  2797. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  2798. [[package]]
  2799. name = "openssl"
  2800. version = "0.10.50"
  2801. source = "registry+https://github.com/rust-lang/crates.io-index"
  2802. checksum = "7e30d8bc91859781f0a943411186324d580f2bbeb71b452fe91ae344806af3f1"
  2803. dependencies = [
  2804. "bitflags",
  2805. "cfg-if",
  2806. "foreign-types",
  2807. "libc",
  2808. "once_cell",
  2809. "openssl-macros",
  2810. "openssl-sys",
  2811. ]
  2812. [[package]]
  2813. name = "openssl-macros"
  2814. version = "0.1.1"
  2815. source = "registry+https://github.com/rust-lang/crates.io-index"
  2816. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  2817. dependencies = [
  2818. "proc-macro2",
  2819. "quote",
  2820. "syn 2.0.16",
  2821. ]
  2822. [[package]]
  2823. name = "openssl-probe"
  2824. version = "0.1.5"
  2825. source = "registry+https://github.com/rust-lang/crates.io-index"
  2826. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  2827. [[package]]
  2828. name = "openssl-src"
  2829. version = "111.25.2+1.1.1t"
  2830. source = "registry+https://github.com/rust-lang/crates.io-index"
  2831. checksum = "320708a054ad9b3bf314688b5db87cf4d6683d64cfc835e2337924ae62bf4431"
  2832. dependencies = [
  2833. "cc",
  2834. ]
  2835. [[package]]
  2836. name = "openssl-sys"
  2837. version = "0.9.85"
  2838. source = "registry+https://github.com/rust-lang/crates.io-index"
  2839. checksum = "0d3d193fb1488ad46ffe3aaabc912cc931d02ee8518fe2959aea8ef52718b0c0"
  2840. dependencies = [
  2841. "cc",
  2842. "libc",
  2843. "openssl-src",
  2844. "pkg-config",
  2845. "vcpkg",
  2846. ]
  2847. [[package]]
  2848. name = "os_pipe"
  2849. version = "0.9.2"
  2850. source = "registry+https://github.com/rust-lang/crates.io-index"
  2851. checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213"
  2852. dependencies = [
  2853. "libc",
  2854. "winapi",
  2855. ]
  2856. [[package]]
  2857. name = "outref"
  2858. version = "0.5.1"
  2859. source = "registry+https://github.com/rust-lang/crates.io-index"
  2860. checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a"
  2861. [[package]]
  2862. name = "overload"
  2863. version = "0.1.1"
  2864. source = "registry+https://github.com/rust-lang/crates.io-index"
  2865. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  2866. [[package]]
  2867. name = "parking_lot"
  2868. version = "0.11.2"
  2869. source = "registry+https://github.com/rust-lang/crates.io-index"
  2870. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2871. dependencies = [
  2872. "instant",
  2873. "lock_api",
  2874. "parking_lot_core 0.8.6",
  2875. ]
  2876. [[package]]
  2877. name = "parking_lot"
  2878. version = "0.12.1"
  2879. source = "registry+https://github.com/rust-lang/crates.io-index"
  2880. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  2881. dependencies = [
  2882. "lock_api",
  2883. "parking_lot_core 0.9.7",
  2884. ]
  2885. [[package]]
  2886. name = "parking_lot_core"
  2887. version = "0.8.6"
  2888. source = "registry+https://github.com/rust-lang/crates.io-index"
  2889. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  2890. dependencies = [
  2891. "cfg-if",
  2892. "instant",
  2893. "libc",
  2894. "redox_syscall 0.2.16",
  2895. "smallvec",
  2896. "winapi",
  2897. ]
  2898. [[package]]
  2899. name = "parking_lot_core"
  2900. version = "0.9.7"
  2901. source = "registry+https://github.com/rust-lang/crates.io-index"
  2902. checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
  2903. dependencies = [
  2904. "cfg-if",
  2905. "libc",
  2906. "redox_syscall 0.2.16",
  2907. "smallvec",
  2908. "windows-sys 0.45.0",
  2909. ]
  2910. [[package]]
  2911. name = "parse-zoneinfo"
  2912. version = "0.3.0"
  2913. source = "registry+https://github.com/rust-lang/crates.io-index"
  2914. checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
  2915. dependencies = [
  2916. "regex",
  2917. ]
  2918. [[package]]
  2919. name = "peeking_take_while"
  2920. version = "0.1.2"
  2921. source = "registry+https://github.com/rust-lang/crates.io-index"
  2922. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  2923. [[package]]
  2924. name = "percent-encoding"
  2925. version = "2.2.0"
  2926. source = "registry+https://github.com/rust-lang/crates.io-index"
  2927. checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
  2928. [[package]]
  2929. name = "pest"
  2930. version = "2.5.7"
  2931. source = "registry+https://github.com/rust-lang/crates.io-index"
  2932. checksum = "7b1403e8401ad5dedea73c626b99758535b342502f8d1e361f4a2dd952749122"
  2933. dependencies = [
  2934. "thiserror",
  2935. "ucd-trie",
  2936. ]
  2937. [[package]]
  2938. name = "pest_derive"
  2939. version = "2.5.7"
  2940. source = "registry+https://github.com/rust-lang/crates.io-index"
  2941. checksum = "be99c4c1d2fc2769b1d00239431d711d08f6efedcecb8b6e30707160aee99c15"
  2942. dependencies = [
  2943. "pest",
  2944. "pest_generator",
  2945. ]
  2946. [[package]]
  2947. name = "pest_generator"
  2948. version = "2.5.7"
  2949. source = "registry+https://github.com/rust-lang/crates.io-index"
  2950. checksum = "e56094789873daa36164de2e822b3888c6ae4b4f9da555a1103587658c805b1e"
  2951. dependencies = [
  2952. "pest",
  2953. "pest_meta",
  2954. "proc-macro2",
  2955. "quote",
  2956. "syn 2.0.16",
  2957. ]
  2958. [[package]]
  2959. name = "pest_meta"
  2960. version = "2.5.7"
  2961. source = "registry+https://github.com/rust-lang/crates.io-index"
  2962. checksum = "6733073c7cff3d8459fda0e42f13a047870242aed8b509fe98000928975f359e"
  2963. dependencies = [
  2964. "once_cell",
  2965. "pest",
  2966. "sha2",
  2967. ]
  2968. [[package]]
  2969. name = "phf"
  2970. version = "0.8.0"
  2971. source = "registry+https://github.com/rust-lang/crates.io-index"
  2972. checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
  2973. dependencies = [
  2974. "phf_macros",
  2975. "phf_shared 0.8.0",
  2976. "proc-macro-hack",
  2977. ]
  2978. [[package]]
  2979. name = "phf"
  2980. version = "0.10.1"
  2981. source = "registry+https://github.com/rust-lang/crates.io-index"
  2982. checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
  2983. dependencies = [
  2984. "phf_shared 0.10.0",
  2985. ]
  2986. [[package]]
  2987. name = "phf"
  2988. version = "0.11.1"
  2989. source = "registry+https://github.com/rust-lang/crates.io-index"
  2990. checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
  2991. dependencies = [
  2992. "phf_shared 0.11.1",
  2993. ]
  2994. [[package]]
  2995. name = "phf_codegen"
  2996. version = "0.10.0"
  2997. source = "registry+https://github.com/rust-lang/crates.io-index"
  2998. checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
  2999. dependencies = [
  3000. "phf_generator 0.10.0",
  3001. "phf_shared 0.10.0",
  3002. ]
  3003. [[package]]
  3004. name = "phf_codegen"
  3005. version = "0.11.1"
  3006. source = "registry+https://github.com/rust-lang/crates.io-index"
  3007. checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770"
  3008. dependencies = [
  3009. "phf_generator 0.11.1",
  3010. "phf_shared 0.11.1",
  3011. ]
  3012. [[package]]
  3013. name = "phf_generator"
  3014. version = "0.8.0"
  3015. source = "registry+https://github.com/rust-lang/crates.io-index"
  3016. checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
  3017. dependencies = [
  3018. "phf_shared 0.8.0",
  3019. "rand 0.7.3",
  3020. ]
  3021. [[package]]
  3022. name = "phf_generator"
  3023. version = "0.10.0"
  3024. source = "registry+https://github.com/rust-lang/crates.io-index"
  3025. checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
  3026. dependencies = [
  3027. "phf_shared 0.10.0",
  3028. "rand 0.8.5",
  3029. ]
  3030. [[package]]
  3031. name = "phf_generator"
  3032. version = "0.11.1"
  3033. source = "registry+https://github.com/rust-lang/crates.io-index"
  3034. checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
  3035. dependencies = [
  3036. "phf_shared 0.11.1",
  3037. "rand 0.8.5",
  3038. ]
  3039. [[package]]
  3040. name = "phf_macros"
  3041. version = "0.8.0"
  3042. source = "registry+https://github.com/rust-lang/crates.io-index"
  3043. checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
  3044. dependencies = [
  3045. "phf_generator 0.8.0",
  3046. "phf_shared 0.8.0",
  3047. "proc-macro-hack",
  3048. "proc-macro2",
  3049. "quote",
  3050. "syn 1.0.109",
  3051. ]
  3052. [[package]]
  3053. name = "phf_shared"
  3054. version = "0.8.0"
  3055. source = "registry+https://github.com/rust-lang/crates.io-index"
  3056. checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
  3057. dependencies = [
  3058. "siphasher",
  3059. ]
  3060. [[package]]
  3061. name = "phf_shared"
  3062. version = "0.10.0"
  3063. source = "registry+https://github.com/rust-lang/crates.io-index"
  3064. checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
  3065. dependencies = [
  3066. "siphasher",
  3067. "uncased",
  3068. ]
  3069. [[package]]
  3070. name = "phf_shared"
  3071. version = "0.11.1"
  3072. source = "registry+https://github.com/rust-lang/crates.io-index"
  3073. checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
  3074. dependencies = [
  3075. "siphasher",
  3076. ]
  3077. [[package]]
  3078. name = "pin-project"
  3079. version = "1.0.12"
  3080. source = "registry+https://github.com/rust-lang/crates.io-index"
  3081. checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
  3082. dependencies = [
  3083. "pin-project-internal",
  3084. ]
  3085. [[package]]
  3086. name = "pin-project-internal"
  3087. version = "1.0.12"
  3088. source = "registry+https://github.com/rust-lang/crates.io-index"
  3089. checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
  3090. dependencies = [
  3091. "proc-macro2",
  3092. "quote",
  3093. "syn 1.0.109",
  3094. ]
  3095. [[package]]
  3096. name = "pin-project-lite"
  3097. version = "0.2.9"
  3098. source = "registry+https://github.com/rust-lang/crates.io-index"
  3099. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  3100. [[package]]
  3101. name = "pin-utils"
  3102. version = "0.1.0"
  3103. source = "registry+https://github.com/rust-lang/crates.io-index"
  3104. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  3105. [[package]]
  3106. name = "pkg-config"
  3107. version = "0.3.26"
  3108. source = "registry+https://github.com/rust-lang/crates.io-index"
  3109. checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
  3110. [[package]]
  3111. name = "postgres-protocol"
  3112. version = "0.6.5"
  3113. source = "registry+https://github.com/rust-lang/crates.io-index"
  3114. checksum = "78b7fa9f396f51dffd61546fd8573ee20592287996568e6175ceb0f8699ad75d"
  3115. dependencies = [
  3116. "base64 0.21.0",
  3117. "byteorder",
  3118. "bytes",
  3119. "fallible-iterator",
  3120. "hmac",
  3121. "md-5",
  3122. "memchr",
  3123. "rand 0.8.5",
  3124. "sha2",
  3125. "stringprep",
  3126. ]
  3127. [[package]]
  3128. name = "postgres-types"
  3129. version = "0.2.5"
  3130. source = "registry+https://github.com/rust-lang/crates.io-index"
  3131. checksum = "f028f05971fe20f512bcc679e2c10227e57809a3af86a7606304435bc8896cd6"
  3132. dependencies = [
  3133. "bytes",
  3134. "chrono",
  3135. "fallible-iterator",
  3136. "postgres-protocol",
  3137. "uuid",
  3138. ]
  3139. [[package]]
  3140. name = "postgrest"
  3141. version = "1.5.0"
  3142. source = "registry+https://github.com/rust-lang/crates.io-index"
  3143. checksum = "e66400cb23a379592bc8c8bdc9adda652eef4a969b74ab78454a8e8c11330c2b"
  3144. dependencies = [
  3145. "reqwest",
  3146. ]
  3147. [[package]]
  3148. name = "ppv-lite86"
  3149. version = "0.2.17"
  3150. source = "registry+https://github.com/rust-lang/crates.io-index"
  3151. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  3152. [[package]]
  3153. name = "prettyplease"
  3154. version = "0.2.5"
  3155. source = "registry+https://github.com/rust-lang/crates.io-index"
  3156. checksum = "617feabb81566b593beb4886fb8c1f38064169dae4dccad0e3220160c3b37203"
  3157. dependencies = [
  3158. "proc-macro2",
  3159. "syn 2.0.16",
  3160. ]
  3161. [[package]]
  3162. name = "proc-macro-crate"
  3163. version = "0.1.5"
  3164. source = "registry+https://github.com/rust-lang/crates.io-index"
  3165. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  3166. dependencies = [
  3167. "toml 0.5.11",
  3168. ]
  3169. [[package]]
  3170. name = "proc-macro-error"
  3171. version = "1.0.4"
  3172. source = "registry+https://github.com/rust-lang/crates.io-index"
  3173. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  3174. dependencies = [
  3175. "proc-macro-error-attr",
  3176. "proc-macro2",
  3177. "quote",
  3178. "syn 1.0.109",
  3179. "version_check",
  3180. ]
  3181. [[package]]
  3182. name = "proc-macro-error-attr"
  3183. version = "1.0.4"
  3184. source = "registry+https://github.com/rust-lang/crates.io-index"
  3185. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  3186. dependencies = [
  3187. "proc-macro2",
  3188. "quote",
  3189. "version_check",
  3190. ]
  3191. [[package]]
  3192. name = "proc-macro-hack"
  3193. version = "0.5.20+deprecated"
  3194. source = "registry+https://github.com/rust-lang/crates.io-index"
  3195. checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
  3196. [[package]]
  3197. name = "proc-macro2"
  3198. version = "1.0.56"
  3199. source = "registry+https://github.com/rust-lang/crates.io-index"
  3200. checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
  3201. dependencies = [
  3202. "unicode-ident",
  3203. ]
  3204. [[package]]
  3205. name = "prost"
  3206. version = "0.11.9"
  3207. source = "registry+https://github.com/rust-lang/crates.io-index"
  3208. checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
  3209. dependencies = [
  3210. "bytes",
  3211. "prost-derive",
  3212. ]
  3213. [[package]]
  3214. name = "prost-derive"
  3215. version = "0.11.9"
  3216. source = "registry+https://github.com/rust-lang/crates.io-index"
  3217. checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
  3218. dependencies = [
  3219. "anyhow",
  3220. "itertools",
  3221. "proc-macro2",
  3222. "quote",
  3223. "syn 1.0.109",
  3224. ]
  3225. [[package]]
  3226. name = "prost-types"
  3227. version = "0.11.9"
  3228. source = "registry+https://github.com/rust-lang/crates.io-index"
  3229. checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
  3230. dependencies = [
  3231. "prost",
  3232. ]
  3233. [[package]]
  3234. name = "protobuf"
  3235. version = "2.28.0"
  3236. source = "registry+https://github.com/rust-lang/crates.io-index"
  3237. checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
  3238. [[package]]
  3239. name = "protobuf-codegen"
  3240. version = "2.28.0"
  3241. source = "registry+https://github.com/rust-lang/crates.io-index"
  3242. checksum = "033460afb75cf755fcfc16dfaed20b86468082a2ea24e05ac35ab4a099a017d6"
  3243. dependencies = [
  3244. "protobuf",
  3245. ]
  3246. [[package]]
  3247. name = "protoc"
  3248. version = "2.28.0"
  3249. source = "registry+https://github.com/rust-lang/crates.io-index"
  3250. checksum = "a0218039c514f9e14a5060742ecd50427f8ac4f85a6dc58f2ddb806e318c55ee"
  3251. dependencies = [
  3252. "log",
  3253. "which",
  3254. ]
  3255. [[package]]
  3256. name = "protoc-bin-vendored"
  3257. version = "3.0.0"
  3258. source = "registry+https://github.com/rust-lang/crates.io-index"
  3259. checksum = "005ca8623e5633e298ad1f917d8be0a44bcf406bf3cde3b80e63003e49a3f27d"
  3260. dependencies = [
  3261. "protoc-bin-vendored-linux-aarch_64",
  3262. "protoc-bin-vendored-linux-ppcle_64",
  3263. "protoc-bin-vendored-linux-x86_32",
  3264. "protoc-bin-vendored-linux-x86_64",
  3265. "protoc-bin-vendored-macos-x86_64",
  3266. "protoc-bin-vendored-win32",
  3267. ]
  3268. [[package]]
  3269. name = "protoc-bin-vendored-linux-aarch_64"
  3270. version = "3.0.0"
  3271. source = "registry+https://github.com/rust-lang/crates.io-index"
  3272. checksum = "8fb9fc9cce84c8694b6ea01cc6296617b288b703719b725b8c9c65f7c5874435"
  3273. [[package]]
  3274. name = "protoc-bin-vendored-linux-ppcle_64"
  3275. version = "3.0.0"
  3276. source = "registry+https://github.com/rust-lang/crates.io-index"
  3277. checksum = "02d2a07dcf7173a04d49974930ccbfb7fd4d74df30ecfc8762cf2f895a094516"
  3278. [[package]]
  3279. name = "protoc-bin-vendored-linux-x86_32"
  3280. version = "3.0.0"
  3281. source = "registry+https://github.com/rust-lang/crates.io-index"
  3282. checksum = "d54fef0b04fcacba64d1d80eed74a20356d96847da8497a59b0a0a436c9165b0"
  3283. [[package]]
  3284. name = "protoc-bin-vendored-linux-x86_64"
  3285. version = "3.0.0"
  3286. source = "registry+https://github.com/rust-lang/crates.io-index"
  3287. checksum = "b8782f2ce7d43a9a5c74ea4936f001e9e8442205c244f7a3d4286bd4c37bc924"
  3288. [[package]]
  3289. name = "protoc-bin-vendored-macos-x86_64"
  3290. version = "3.0.0"
  3291. source = "registry+https://github.com/rust-lang/crates.io-index"
  3292. checksum = "b5de656c7ee83f08e0ae5b81792ccfdc1d04e7876b1d9a38e6876a9e09e02537"
  3293. [[package]]
  3294. name = "protoc-bin-vendored-win32"
  3295. version = "3.0.0"
  3296. source = "registry+https://github.com/rust-lang/crates.io-index"
  3297. checksum = "9653c3ed92974e34c5a6e0a510864dab979760481714c172e0a34e437cb98804"
  3298. [[package]]
  3299. name = "protoc-rust"
  3300. version = "2.28.0"
  3301. source = "registry+https://github.com/rust-lang/crates.io-index"
  3302. checksum = "22f8a182bb17c485f20bdc4274a8c39000a61024cfe461c799b50fec77267838"
  3303. dependencies = [
  3304. "protobuf",
  3305. "protobuf-codegen",
  3306. "protoc",
  3307. "tempfile",
  3308. ]
  3309. [[package]]
  3310. name = "ptr_meta"
  3311. version = "0.1.4"
  3312. source = "registry+https://github.com/rust-lang/crates.io-index"
  3313. checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
  3314. dependencies = [
  3315. "ptr_meta_derive",
  3316. ]
  3317. [[package]]
  3318. name = "ptr_meta_derive"
  3319. version = "0.1.4"
  3320. source = "registry+https://github.com/rust-lang/crates.io-index"
  3321. checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
  3322. dependencies = [
  3323. "proc-macro2",
  3324. "quote",
  3325. "syn 1.0.109",
  3326. ]
  3327. [[package]]
  3328. name = "quickcheck"
  3329. version = "1.0.3"
  3330. source = "registry+https://github.com/rust-lang/crates.io-index"
  3331. checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
  3332. dependencies = [
  3333. "env_logger",
  3334. "log",
  3335. "rand 0.8.5",
  3336. ]
  3337. [[package]]
  3338. name = "quickcheck_macros"
  3339. version = "1.0.0"
  3340. source = "registry+https://github.com/rust-lang/crates.io-index"
  3341. checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9"
  3342. dependencies = [
  3343. "proc-macro2",
  3344. "quote",
  3345. "syn 1.0.109",
  3346. ]
  3347. [[package]]
  3348. name = "quote"
  3349. version = "1.0.26"
  3350. source = "registry+https://github.com/rust-lang/crates.io-index"
  3351. checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
  3352. dependencies = [
  3353. "proc-macro2",
  3354. ]
  3355. [[package]]
  3356. name = "r2d2"
  3357. version = "0.8.10"
  3358. source = "registry+https://github.com/rust-lang/crates.io-index"
  3359. checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
  3360. dependencies = [
  3361. "log",
  3362. "parking_lot 0.12.1",
  3363. "scheduled-thread-pool",
  3364. ]
  3365. [[package]]
  3366. name = "rand"
  3367. version = "0.4.6"
  3368. source = "registry+https://github.com/rust-lang/crates.io-index"
  3369. checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
  3370. dependencies = [
  3371. "fuchsia-cprng",
  3372. "libc",
  3373. "rand_core 0.3.1",
  3374. "rdrand",
  3375. "winapi",
  3376. ]
  3377. [[package]]
  3378. name = "rand"
  3379. version = "0.7.3"
  3380. source = "registry+https://github.com/rust-lang/crates.io-index"
  3381. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  3382. dependencies = [
  3383. "getrandom 0.1.16",
  3384. "libc",
  3385. "rand_chacha 0.2.2",
  3386. "rand_core 0.5.1",
  3387. "rand_hc",
  3388. "rand_pcg",
  3389. ]
  3390. [[package]]
  3391. name = "rand"
  3392. version = "0.8.5"
  3393. source = "registry+https://github.com/rust-lang/crates.io-index"
  3394. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  3395. dependencies = [
  3396. "libc",
  3397. "rand_chacha 0.3.1",
  3398. "rand_core 0.6.4",
  3399. ]
  3400. [[package]]
  3401. name = "rand_chacha"
  3402. version = "0.2.2"
  3403. source = "registry+https://github.com/rust-lang/crates.io-index"
  3404. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  3405. dependencies = [
  3406. "ppv-lite86",
  3407. "rand_core 0.5.1",
  3408. ]
  3409. [[package]]
  3410. name = "rand_chacha"
  3411. version = "0.3.1"
  3412. source = "registry+https://github.com/rust-lang/crates.io-index"
  3413. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  3414. dependencies = [
  3415. "ppv-lite86",
  3416. "rand_core 0.6.4",
  3417. ]
  3418. [[package]]
  3419. name = "rand_core"
  3420. version = "0.3.1"
  3421. source = "registry+https://github.com/rust-lang/crates.io-index"
  3422. checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
  3423. dependencies = [
  3424. "rand_core 0.4.2",
  3425. ]
  3426. [[package]]
  3427. name = "rand_core"
  3428. version = "0.4.2"
  3429. source = "registry+https://github.com/rust-lang/crates.io-index"
  3430. checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
  3431. [[package]]
  3432. name = "rand_core"
  3433. version = "0.5.1"
  3434. source = "registry+https://github.com/rust-lang/crates.io-index"
  3435. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  3436. dependencies = [
  3437. "getrandom 0.1.16",
  3438. ]
  3439. [[package]]
  3440. name = "rand_core"
  3441. version = "0.6.4"
  3442. source = "registry+https://github.com/rust-lang/crates.io-index"
  3443. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  3444. dependencies = [
  3445. "getrandom 0.2.9",
  3446. ]
  3447. [[package]]
  3448. name = "rand_hc"
  3449. version = "0.2.0"
  3450. source = "registry+https://github.com/rust-lang/crates.io-index"
  3451. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  3452. dependencies = [
  3453. "rand_core 0.5.1",
  3454. ]
  3455. [[package]]
  3456. name = "rand_pcg"
  3457. version = "0.2.1"
  3458. source = "registry+https://github.com/rust-lang/crates.io-index"
  3459. checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
  3460. dependencies = [
  3461. "rand_core 0.5.1",
  3462. ]
  3463. [[package]]
  3464. name = "rayon"
  3465. version = "1.7.0"
  3466. source = "registry+https://github.com/rust-lang/crates.io-index"
  3467. checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
  3468. dependencies = [
  3469. "either",
  3470. "rayon-core",
  3471. ]
  3472. [[package]]
  3473. name = "rayon-core"
  3474. version = "1.11.0"
  3475. source = "registry+https://github.com/rust-lang/crates.io-index"
  3476. checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
  3477. dependencies = [
  3478. "crossbeam-channel",
  3479. "crossbeam-deque",
  3480. "crossbeam-utils",
  3481. "num_cpus",
  3482. ]
  3483. [[package]]
  3484. name = "rdrand"
  3485. version = "0.4.0"
  3486. source = "registry+https://github.com/rust-lang/crates.io-index"
  3487. checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
  3488. dependencies = [
  3489. "rand_core 0.3.1",
  3490. ]
  3491. [[package]]
  3492. name = "redox_syscall"
  3493. version = "0.1.57"
  3494. source = "registry+https://github.com/rust-lang/crates.io-index"
  3495. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  3496. [[package]]
  3497. name = "redox_syscall"
  3498. version = "0.2.16"
  3499. source = "registry+https://github.com/rust-lang/crates.io-index"
  3500. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  3501. dependencies = [
  3502. "bitflags",
  3503. ]
  3504. [[package]]
  3505. name = "redox_syscall"
  3506. version = "0.3.5"
  3507. source = "registry+https://github.com/rust-lang/crates.io-index"
  3508. checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
  3509. dependencies = [
  3510. "bitflags",
  3511. ]
  3512. [[package]]
  3513. name = "redox_users"
  3514. version = "0.4.3"
  3515. source = "registry+https://github.com/rust-lang/crates.io-index"
  3516. checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
  3517. dependencies = [
  3518. "getrandom 0.2.9",
  3519. "redox_syscall 0.2.16",
  3520. "thiserror",
  3521. ]
  3522. [[package]]
  3523. name = "refinery"
  3524. version = "0.8.10"
  3525. source = "registry+https://github.com/rust-lang/crates.io-index"
  3526. checksum = "cdb0436d0dd7bd8d4fce1e828751fa79742b08e35f27cfea7546f8a322b5ef24"
  3527. dependencies = [
  3528. "refinery-core",
  3529. "refinery-macros",
  3530. ]
  3531. [[package]]
  3532. name = "refinery-core"
  3533. version = "0.8.10"
  3534. source = "registry+https://github.com/rust-lang/crates.io-index"
  3535. checksum = "19206547cd047e8f4dfa6b20c30d3ecaf24be05841b6aa0aa926a47a3d0662bb"
  3536. dependencies = [
  3537. "async-trait",
  3538. "cfg-if",
  3539. "lazy_static",
  3540. "log",
  3541. "regex",
  3542. "serde",
  3543. "siphasher",
  3544. "thiserror",
  3545. "time 0.3.21",
  3546. "tokio",
  3547. "tokio-postgres",
  3548. "toml 0.7.5",
  3549. "url",
  3550. "walkdir",
  3551. ]
  3552. [[package]]
  3553. name = "refinery-macros"
  3554. version = "0.8.10"
  3555. source = "registry+https://github.com/rust-lang/crates.io-index"
  3556. checksum = "d94d4b9241859ba19eaa5c04c86e782eb3aa0aae2c5868e0cfa90c856e58a174"
  3557. dependencies = [
  3558. "proc-macro2",
  3559. "quote",
  3560. "refinery-core",
  3561. "regex",
  3562. "syn 2.0.16",
  3563. ]
  3564. [[package]]
  3565. name = "regex"
  3566. version = "1.7.3"
  3567. source = "registry+https://github.com/rust-lang/crates.io-index"
  3568. checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
  3569. dependencies = [
  3570. "aho-corasick",
  3571. "memchr",
  3572. "regex-syntax",
  3573. ]
  3574. [[package]]
  3575. name = "regex-automata"
  3576. version = "0.1.10"
  3577. source = "registry+https://github.com/rust-lang/crates.io-index"
  3578. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  3579. dependencies = [
  3580. "regex-syntax",
  3581. ]
  3582. [[package]]
  3583. name = "regex-syntax"
  3584. version = "0.6.29"
  3585. source = "registry+https://github.com/rust-lang/crates.io-index"
  3586. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  3587. [[package]]
  3588. name = "remove_dir_all"
  3589. version = "0.5.3"
  3590. source = "registry+https://github.com/rust-lang/crates.io-index"
  3591. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  3592. dependencies = [
  3593. "winapi",
  3594. ]
  3595. [[package]]
  3596. name = "rend"
  3597. version = "0.4.0"
  3598. source = "registry+https://github.com/rust-lang/crates.io-index"
  3599. checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab"
  3600. dependencies = [
  3601. "bytecheck",
  3602. ]
  3603. [[package]]
  3604. name = "reqwest"
  3605. version = "0.11.16"
  3606. source = "registry+https://github.com/rust-lang/crates.io-index"
  3607. checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254"
  3608. dependencies = [
  3609. "base64 0.21.0",
  3610. "bytes",
  3611. "encoding_rs",
  3612. "futures-core",
  3613. "futures-util",
  3614. "h2",
  3615. "http",
  3616. "http-body",
  3617. "hyper",
  3618. "hyper-rustls",
  3619. "hyper-tls",
  3620. "ipnet",
  3621. "js-sys",
  3622. "log",
  3623. "mime",
  3624. "native-tls",
  3625. "once_cell",
  3626. "percent-encoding",
  3627. "pin-project-lite",
  3628. "rustls",
  3629. "rustls-pemfile",
  3630. "serde",
  3631. "serde_json",
  3632. "serde_urlencoded",
  3633. "tokio",
  3634. "tokio-native-tls",
  3635. "tokio-rustls",
  3636. "tower-service",
  3637. "url",
  3638. "wasm-bindgen",
  3639. "wasm-bindgen-futures",
  3640. "web-sys",
  3641. "webpki-roots",
  3642. "winreg",
  3643. ]
  3644. [[package]]
  3645. name = "retain_mut"
  3646. version = "0.1.9"
  3647. source = "registry+https://github.com/rust-lang/crates.io-index"
  3648. checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
  3649. [[package]]
  3650. name = "ring"
  3651. version = "0.16.20"
  3652. source = "registry+https://github.com/rust-lang/crates.io-index"
  3653. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  3654. dependencies = [
  3655. "cc",
  3656. "libc",
  3657. "once_cell",
  3658. "spin",
  3659. "untrusted",
  3660. "web-sys",
  3661. "winapi",
  3662. ]
  3663. [[package]]
  3664. name = "rkyv"
  3665. version = "0.7.41"
  3666. source = "registry+https://github.com/rust-lang/crates.io-index"
  3667. checksum = "21499ed91807f07ae081880aabb2ccc0235e9d88011867d984525e9a4c3cfa3e"
  3668. dependencies = [
  3669. "bytecheck",
  3670. "hashbrown 0.12.3",
  3671. "ptr_meta",
  3672. "rend",
  3673. "rkyv_derive",
  3674. "seahash",
  3675. ]
  3676. [[package]]
  3677. name = "rkyv_derive"
  3678. version = "0.7.41"
  3679. source = "registry+https://github.com/rust-lang/crates.io-index"
  3680. checksum = "ac1c672430eb41556291981f45ca900a0239ad007242d1cb4b4167af842db666"
  3681. dependencies = [
  3682. "proc-macro2",
  3683. "quote",
  3684. "syn 1.0.109",
  3685. ]
  3686. [[package]]
  3687. name = "rocksdb"
  3688. version = "0.21.0"
  3689. source = "registry+https://github.com/rust-lang/crates.io-index"
  3690. checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe"
  3691. dependencies = [
  3692. "libc",
  3693. "librocksdb-sys",
  3694. ]
  3695. [[package]]
  3696. name = "rusoto_credential"
  3697. version = "0.48.0"
  3698. source = "registry+https://github.com/rust-lang/crates.io-index"
  3699. checksum = "ee0a6c13db5aad6047b6a44ef023dbbc21a056b6dab5be3b79ce4283d5c02d05"
  3700. dependencies = [
  3701. "async-trait",
  3702. "chrono",
  3703. "dirs-next",
  3704. "futures",
  3705. "hyper",
  3706. "serde",
  3707. "serde_json",
  3708. "shlex",
  3709. "tokio",
  3710. "zeroize",
  3711. ]
  3712. [[package]]
  3713. name = "rust_decimal"
  3714. version = "1.29.1"
  3715. source = "registry+https://github.com/rust-lang/crates.io-index"
  3716. checksum = "26bd36b60561ee1fb5ec2817f198b6fd09fa571c897a5e86d1487cfc2b096dfc"
  3717. dependencies = [
  3718. "arrayvec 0.7.2",
  3719. "borsh",
  3720. "bytecheck",
  3721. "byteorder",
  3722. "bytes",
  3723. "num-traits",
  3724. "rand 0.8.5",
  3725. "rkyv",
  3726. "serde",
  3727. "serde_json",
  3728. ]
  3729. [[package]]
  3730. name = "rust_decimal_macros"
  3731. version = "1.29.1"
  3732. source = "registry+https://github.com/rust-lang/crates.io-index"
  3733. checksum = "0e773fd3da1ed42472fdf3cfdb4972948a555bc3d73f5e0bdb99d17e7b54c687"
  3734. dependencies = [
  3735. "quote",
  3736. "rust_decimal",
  3737. ]
  3738. [[package]]
  3739. name = "rustc-demangle"
  3740. version = "0.1.22"
  3741. source = "registry+https://github.com/rust-lang/crates.io-index"
  3742. checksum = "d4a36c42d1873f9a77c53bde094f9664d9891bc604a45b4798fd2c389ed12e5b"
  3743. [[package]]
  3744. name = "rustc-hash"
  3745. version = "1.1.0"
  3746. source = "registry+https://github.com/rust-lang/crates.io-index"
  3747. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  3748. [[package]]
  3749. name = "rustc_version"
  3750. version = "0.4.0"
  3751. source = "registry+https://github.com/rust-lang/crates.io-index"
  3752. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  3753. dependencies = [
  3754. "semver",
  3755. ]
  3756. [[package]]
  3757. name = "rustix"
  3758. version = "0.37.11"
  3759. source = "registry+https://github.com/rust-lang/crates.io-index"
  3760. checksum = "85597d61f83914ddeba6a47b3b8ffe7365107221c2e557ed94426489fefb5f77"
  3761. dependencies = [
  3762. "bitflags",
  3763. "errno",
  3764. "io-lifetimes",
  3765. "libc",
  3766. "linux-raw-sys",
  3767. "windows-sys 0.48.0",
  3768. ]
  3769. [[package]]
  3770. name = "rustls"
  3771. version = "0.20.8"
  3772. source = "registry+https://github.com/rust-lang/crates.io-index"
  3773. checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
  3774. dependencies = [
  3775. "log",
  3776. "ring",
  3777. "sct",
  3778. "webpki",
  3779. ]
  3780. [[package]]
  3781. name = "rustls-native-certs"
  3782. version = "0.6.2"
  3783. source = "registry+https://github.com/rust-lang/crates.io-index"
  3784. checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
  3785. dependencies = [
  3786. "openssl-probe",
  3787. "rustls-pemfile",
  3788. "schannel",
  3789. "security-framework",
  3790. ]
  3791. [[package]]
  3792. name = "rustls-pemfile"
  3793. version = "1.0.2"
  3794. source = "registry+https://github.com/rust-lang/crates.io-index"
  3795. checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
  3796. dependencies = [
  3797. "base64 0.21.0",
  3798. ]
  3799. [[package]]
  3800. name = "rustversion"
  3801. version = "1.0.12"
  3802. source = "registry+https://github.com/rust-lang/crates.io-index"
  3803. checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
  3804. [[package]]
  3805. name = "rusty-money"
  3806. version = "0.4.1"
  3807. source = "registry+https://github.com/rust-lang/crates.io-index"
  3808. checksum = "5b28f881005eac7ad8d46b6f075da5f322bd7f4f83a38720fc069694ddadd683"
  3809. dependencies = [
  3810. "rust_decimal",
  3811. "rust_decimal_macros",
  3812. ]
  3813. [[package]]
  3814. name = "ryu"
  3815. version = "1.0.13"
  3816. source = "registry+https://github.com/rust-lang/crates.io-index"
  3817. checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
  3818. [[package]]
  3819. name = "same-file"
  3820. version = "1.0.6"
  3821. source = "registry+https://github.com/rust-lang/crates.io-index"
  3822. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  3823. dependencies = [
  3824. "winapi-util",
  3825. ]
  3826. [[package]]
  3827. name = "schannel"
  3828. version = "0.1.21"
  3829. source = "registry+https://github.com/rust-lang/crates.io-index"
  3830. checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
  3831. dependencies = [
  3832. "windows-sys 0.42.0",
  3833. ]
  3834. [[package]]
  3835. name = "scheduled-thread-pool"
  3836. version = "0.2.7"
  3837. source = "registry+https://github.com/rust-lang/crates.io-index"
  3838. checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
  3839. dependencies = [
  3840. "parking_lot 0.12.1",
  3841. ]
  3842. [[package]]
  3843. name = "scopeguard"
  3844. version = "1.1.0"
  3845. source = "registry+https://github.com/rust-lang/crates.io-index"
  3846. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  3847. [[package]]
  3848. name = "scratch"
  3849. version = "1.0.5"
  3850. source = "registry+https://github.com/rust-lang/crates.io-index"
  3851. checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
  3852. [[package]]
  3853. name = "sct"
  3854. version = "0.7.0"
  3855. source = "registry+https://github.com/rust-lang/crates.io-index"
  3856. checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
  3857. dependencies = [
  3858. "ring",
  3859. "untrusted",
  3860. ]
  3861. [[package]]
  3862. name = "seahash"
  3863. version = "4.1.0"
  3864. source = "registry+https://github.com/rust-lang/crates.io-index"
  3865. checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
  3866. [[package]]
  3867. name = "security-framework"
  3868. version = "2.8.2"
  3869. source = "registry+https://github.com/rust-lang/crates.io-index"
  3870. checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
  3871. dependencies = [
  3872. "bitflags",
  3873. "core-foundation",
  3874. "core-foundation-sys",
  3875. "libc",
  3876. "security-framework-sys",
  3877. ]
  3878. [[package]]
  3879. name = "security-framework-sys"
  3880. version = "2.8.0"
  3881. source = "registry+https://github.com/rust-lang/crates.io-index"
  3882. checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
  3883. dependencies = [
  3884. "core-foundation-sys",
  3885. "libc",
  3886. ]
  3887. [[package]]
  3888. name = "semver"
  3889. version = "1.0.17"
  3890. source = "registry+https://github.com/rust-lang/crates.io-index"
  3891. checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
  3892. [[package]]
  3893. name = "serde"
  3894. version = "1.0.160"
  3895. source = "registry+https://github.com/rust-lang/crates.io-index"
  3896. checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
  3897. dependencies = [
  3898. "serde_derive",
  3899. ]
  3900. [[package]]
  3901. name = "serde-aux"
  3902. version = "4.2.0"
  3903. source = "registry+https://github.com/rust-lang/crates.io-index"
  3904. checksum = "c3dfe1b7eb6f9dcf011bd6fad169cdeaae75eda0d61b1a99a3f015b41b0cae39"
  3905. dependencies = [
  3906. "chrono",
  3907. "serde",
  3908. "serde_json",
  3909. ]
  3910. [[package]]
  3911. name = "serde_derive"
  3912. version = "1.0.160"
  3913. source = "registry+https://github.com/rust-lang/crates.io-index"
  3914. checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
  3915. dependencies = [
  3916. "proc-macro2",
  3917. "quote",
  3918. "syn 2.0.16",
  3919. ]
  3920. [[package]]
  3921. name = "serde_json"
  3922. version = "1.0.96"
  3923. source = "registry+https://github.com/rust-lang/crates.io-index"
  3924. checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
  3925. dependencies = [
  3926. "itoa",
  3927. "ryu",
  3928. "serde",
  3929. ]
  3930. [[package]]
  3931. name = "serde_repr"
  3932. version = "0.1.12"
  3933. source = "registry+https://github.com/rust-lang/crates.io-index"
  3934. checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab"
  3935. dependencies = [
  3936. "proc-macro2",
  3937. "quote",
  3938. "syn 2.0.16",
  3939. ]
  3940. [[package]]
  3941. name = "serde_spanned"
  3942. version = "0.6.3"
  3943. source = "registry+https://github.com/rust-lang/crates.io-index"
  3944. checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
  3945. dependencies = [
  3946. "serde",
  3947. ]
  3948. [[package]]
  3949. name = "serde_urlencoded"
  3950. version = "0.7.1"
  3951. source = "registry+https://github.com/rust-lang/crates.io-index"
  3952. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  3953. dependencies = [
  3954. "form_urlencoded",
  3955. "itoa",
  3956. "ryu",
  3957. "serde",
  3958. ]
  3959. [[package]]
  3960. name = "sha-1"
  3961. version = "0.9.8"
  3962. source = "registry+https://github.com/rust-lang/crates.io-index"
  3963. checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
  3964. dependencies = [
  3965. "block-buffer 0.9.0",
  3966. "cfg-if",
  3967. "cpufeatures",
  3968. "digest 0.9.0",
  3969. "opaque-debug",
  3970. ]
  3971. [[package]]
  3972. name = "sha1"
  3973. version = "0.10.5"
  3974. source = "registry+https://github.com/rust-lang/crates.io-index"
  3975. checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
  3976. dependencies = [
  3977. "cfg-if",
  3978. "cpufeatures",
  3979. "digest 0.10.6",
  3980. ]
  3981. [[package]]
  3982. name = "sha1_smol"
  3983. version = "1.0.0"
  3984. source = "registry+https://github.com/rust-lang/crates.io-index"
  3985. checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
  3986. [[package]]
  3987. name = "sha2"
  3988. version = "0.10.6"
  3989. source = "registry+https://github.com/rust-lang/crates.io-index"
  3990. checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
  3991. dependencies = [
  3992. "cfg-if",
  3993. "cpufeatures",
  3994. "digest 0.10.6",
  3995. ]
  3996. [[package]]
  3997. name = "sharded-slab"
  3998. version = "0.1.4"
  3999. source = "registry+https://github.com/rust-lang/crates.io-index"
  4000. checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
  4001. dependencies = [
  4002. "lazy_static",
  4003. ]
  4004. [[package]]
  4005. name = "shlex"
  4006. version = "1.1.0"
  4007. source = "registry+https://github.com/rust-lang/crates.io-index"
  4008. checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
  4009. [[package]]
  4010. name = "signal-hook-registry"
  4011. version = "1.4.1"
  4012. source = "registry+https://github.com/rust-lang/crates.io-index"
  4013. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  4014. dependencies = [
  4015. "libc",
  4016. ]
  4017. [[package]]
  4018. name = "simdutf8"
  4019. version = "0.1.4"
  4020. source = "registry+https://github.com/rust-lang/crates.io-index"
  4021. checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
  4022. [[package]]
  4023. name = "similar"
  4024. version = "1.3.0"
  4025. source = "registry+https://github.com/rust-lang/crates.io-index"
  4026. checksum = "1ad1d488a557b235fc46dae55512ffbfc429d2482b08b4d9435ab07384ca8aec"
  4027. [[package]]
  4028. name = "similar"
  4029. version = "2.2.1"
  4030. source = "registry+https://github.com/rust-lang/crates.io-index"
  4031. checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf"
  4032. [[package]]
  4033. name = "siphasher"
  4034. version = "0.3.10"
  4035. source = "registry+https://github.com/rust-lang/crates.io-index"
  4036. checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
  4037. [[package]]
  4038. name = "slab"
  4039. version = "0.4.8"
  4040. source = "registry+https://github.com/rust-lang/crates.io-index"
  4041. checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
  4042. dependencies = [
  4043. "autocfg",
  4044. ]
  4045. [[package]]
  4046. name = "sled"
  4047. version = "0.34.7"
  4048. source = "registry+https://github.com/rust-lang/crates.io-index"
  4049. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  4050. dependencies = [
  4051. "crc32fast",
  4052. "crossbeam-epoch",
  4053. "crossbeam-utils",
  4054. "fs2",
  4055. "fxhash",
  4056. "libc",
  4057. "log",
  4058. "parking_lot 0.11.2",
  4059. ]
  4060. [[package]]
  4061. name = "slug"
  4062. version = "0.1.4"
  4063. source = "registry+https://github.com/rust-lang/crates.io-index"
  4064. checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
  4065. dependencies = [
  4066. "deunicode",
  4067. ]
  4068. [[package]]
  4069. name = "smallstr"
  4070. version = "0.2.0"
  4071. source = "registry+https://github.com/rust-lang/crates.io-index"
  4072. checksum = "1e922794d168678729ffc7e07182721a14219c65814e66e91b839a272fe5ae4f"
  4073. dependencies = [
  4074. "smallvec",
  4075. ]
  4076. [[package]]
  4077. name = "smallvec"
  4078. version = "1.10.0"
  4079. source = "registry+https://github.com/rust-lang/crates.io-index"
  4080. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  4081. [[package]]
  4082. name = "socket2"
  4083. version = "0.4.9"
  4084. source = "registry+https://github.com/rust-lang/crates.io-index"
  4085. checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
  4086. dependencies = [
  4087. "libc",
  4088. "winapi",
  4089. ]
  4090. [[package]]
  4091. name = "socket2"
  4092. version = "0.5.3"
  4093. source = "registry+https://github.com/rust-lang/crates.io-index"
  4094. checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
  4095. dependencies = [
  4096. "libc",
  4097. "windows-sys 0.48.0",
  4098. ]
  4099. [[package]]
  4100. name = "spin"
  4101. version = "0.5.2"
  4102. source = "registry+https://github.com/rust-lang/crates.io-index"
  4103. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  4104. [[package]]
  4105. name = "static_assertions"
  4106. version = "1.1.0"
  4107. source = "registry+https://github.com/rust-lang/crates.io-index"
  4108. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  4109. [[package]]
  4110. name = "stringprep"
  4111. version = "0.1.2"
  4112. source = "registry+https://github.com/rust-lang/crates.io-index"
  4113. checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
  4114. dependencies = [
  4115. "unicode-bidi",
  4116. "unicode-normalization",
  4117. ]
  4118. [[package]]
  4119. name = "strum"
  4120. version = "0.21.0"
  4121. source = "registry+https://github.com/rust-lang/crates.io-index"
  4122. checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"
  4123. [[package]]
  4124. name = "strum_macros"
  4125. version = "0.21.1"
  4126. source = "registry+https://github.com/rust-lang/crates.io-index"
  4127. checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"
  4128. dependencies = [
  4129. "heck",
  4130. "proc-macro2",
  4131. "quote",
  4132. "syn 1.0.109",
  4133. ]
  4134. [[package]]
  4135. name = "subtle"
  4136. version = "2.4.1"
  4137. source = "registry+https://github.com/rust-lang/crates.io-index"
  4138. checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
  4139. [[package]]
  4140. name = "syn"
  4141. version = "1.0.109"
  4142. source = "registry+https://github.com/rust-lang/crates.io-index"
  4143. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  4144. dependencies = [
  4145. "proc-macro2",
  4146. "quote",
  4147. "unicode-ident",
  4148. ]
  4149. [[package]]
  4150. name = "syn"
  4151. version = "2.0.16"
  4152. source = "registry+https://github.com/rust-lang/crates.io-index"
  4153. checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01"
  4154. dependencies = [
  4155. "proc-macro2",
  4156. "quote",
  4157. "unicode-ident",
  4158. ]
  4159. [[package]]
  4160. name = "sync_wrapper"
  4161. version = "0.1.2"
  4162. source = "registry+https://github.com/rust-lang/crates.io-index"
  4163. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  4164. [[package]]
  4165. name = "tempdir"
  4166. version = "0.3.7"
  4167. source = "registry+https://github.com/rust-lang/crates.io-index"
  4168. checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
  4169. dependencies = [
  4170. "rand 0.4.6",
  4171. "remove_dir_all",
  4172. ]
  4173. [[package]]
  4174. name = "tempfile"
  4175. version = "3.5.0"
  4176. source = "registry+https://github.com/rust-lang/crates.io-index"
  4177. checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
  4178. dependencies = [
  4179. "cfg-if",
  4180. "fastrand",
  4181. "redox_syscall 0.3.5",
  4182. "rustix",
  4183. "windows-sys 0.45.0",
  4184. ]
  4185. [[package]]
  4186. name = "tera"
  4187. version = "1.18.1"
  4188. source = "registry+https://github.com/rust-lang/crates.io-index"
  4189. checksum = "95a665751302f22a03c56721e23094e4dc22b04a80f381e6737a07bf7a7c70c0"
  4190. dependencies = [
  4191. "chrono",
  4192. "chrono-tz 0.6.1",
  4193. "globwalk",
  4194. "humansize",
  4195. "lazy_static",
  4196. "percent-encoding",
  4197. "pest",
  4198. "pest_derive",
  4199. "rand 0.8.5",
  4200. "regex",
  4201. "serde",
  4202. "serde_json",
  4203. "slug",
  4204. "thread_local",
  4205. "unic-segment",
  4206. ]
  4207. [[package]]
  4208. name = "termcolor"
  4209. version = "1.2.0"
  4210. source = "registry+https://github.com/rust-lang/crates.io-index"
  4211. checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
  4212. dependencies = [
  4213. "winapi-util",
  4214. ]
  4215. [[package]]
  4216. name = "terminal_size"
  4217. version = "0.1.17"
  4218. source = "registry+https://github.com/rust-lang/crates.io-index"
  4219. checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
  4220. dependencies = [
  4221. "libc",
  4222. "winapi",
  4223. ]
  4224. [[package]]
  4225. name = "thiserror"
  4226. version = "1.0.40"
  4227. source = "registry+https://github.com/rust-lang/crates.io-index"
  4228. checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
  4229. dependencies = [
  4230. "thiserror-impl",
  4231. ]
  4232. [[package]]
  4233. name = "thiserror-impl"
  4234. version = "1.0.40"
  4235. source = "registry+https://github.com/rust-lang/crates.io-index"
  4236. checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
  4237. dependencies = [
  4238. "proc-macro2",
  4239. "quote",
  4240. "syn 2.0.16",
  4241. ]
  4242. [[package]]
  4243. name = "thread-id"
  4244. version = "3.3.0"
  4245. source = "registry+https://github.com/rust-lang/crates.io-index"
  4246. checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1"
  4247. dependencies = [
  4248. "libc",
  4249. "redox_syscall 0.1.57",
  4250. "winapi",
  4251. ]
  4252. [[package]]
  4253. name = "thread_local"
  4254. version = "1.1.4"
  4255. source = "registry+https://github.com/rust-lang/crates.io-index"
  4256. checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
  4257. dependencies = [
  4258. "once_cell",
  4259. ]
  4260. [[package]]
  4261. name = "time"
  4262. version = "0.1.45"
  4263. source = "registry+https://github.com/rust-lang/crates.io-index"
  4264. checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
  4265. dependencies = [
  4266. "libc",
  4267. "wasi 0.10.0+wasi-snapshot-preview1",
  4268. "winapi",
  4269. ]
  4270. [[package]]
  4271. name = "time"
  4272. version = "0.3.21"
  4273. source = "registry+https://github.com/rust-lang/crates.io-index"
  4274. checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
  4275. dependencies = [
  4276. "itoa",
  4277. "serde",
  4278. "time-core",
  4279. "time-macros",
  4280. ]
  4281. [[package]]
  4282. name = "time-core"
  4283. version = "0.1.1"
  4284. source = "registry+https://github.com/rust-lang/crates.io-index"
  4285. checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
  4286. [[package]]
  4287. name = "time-macros"
  4288. version = "0.2.9"
  4289. source = "registry+https://github.com/rust-lang/crates.io-index"
  4290. checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
  4291. dependencies = [
  4292. "time-core",
  4293. ]
  4294. [[package]]
  4295. name = "tinyvec"
  4296. version = "1.6.0"
  4297. source = "registry+https://github.com/rust-lang/crates.io-index"
  4298. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  4299. dependencies = [
  4300. "tinyvec_macros",
  4301. ]
  4302. [[package]]
  4303. name = "tinyvec_macros"
  4304. version = "0.1.1"
  4305. source = "registry+https://github.com/rust-lang/crates.io-index"
  4306. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  4307. [[package]]
  4308. name = "tokio"
  4309. version = "1.27.0"
  4310. source = "registry+https://github.com/rust-lang/crates.io-index"
  4311. checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001"
  4312. dependencies = [
  4313. "autocfg",
  4314. "bytes",
  4315. "libc",
  4316. "mio",
  4317. "num_cpus",
  4318. "parking_lot 0.12.1",
  4319. "pin-project-lite",
  4320. "signal-hook-registry",
  4321. "socket2 0.4.9",
  4322. "tokio-macros",
  4323. "tracing",
  4324. "windows-sys 0.45.0",
  4325. ]
  4326. [[package]]
  4327. name = "tokio-io-timeout"
  4328. version = "1.2.0"
  4329. source = "registry+https://github.com/rust-lang/crates.io-index"
  4330. checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
  4331. dependencies = [
  4332. "pin-project-lite",
  4333. "tokio",
  4334. ]
  4335. [[package]]
  4336. name = "tokio-macros"
  4337. version = "2.0.0"
  4338. source = "registry+https://github.com/rust-lang/crates.io-index"
  4339. checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce"
  4340. dependencies = [
  4341. "proc-macro2",
  4342. "quote",
  4343. "syn 2.0.16",
  4344. ]
  4345. [[package]]
  4346. name = "tokio-native-tls"
  4347. version = "0.3.1"
  4348. source = "registry+https://github.com/rust-lang/crates.io-index"
  4349. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  4350. dependencies = [
  4351. "native-tls",
  4352. "tokio",
  4353. ]
  4354. [[package]]
  4355. name = "tokio-postgres"
  4356. version = "0.7.8"
  4357. source = "registry+https://github.com/rust-lang/crates.io-index"
  4358. checksum = "6e89f6234aa8fd43779746012fcf53603cdb91fdd8399aa0de868c2d56b6dde1"
  4359. dependencies = [
  4360. "async-trait",
  4361. "byteorder",
  4362. "bytes",
  4363. "fallible-iterator",
  4364. "futures-channel",
  4365. "futures-util",
  4366. "log",
  4367. "parking_lot 0.12.1",
  4368. "percent-encoding",
  4369. "phf 0.11.1",
  4370. "pin-project-lite",
  4371. "postgres-protocol",
  4372. "postgres-types",
  4373. "socket2 0.5.3",
  4374. "tokio",
  4375. "tokio-util",
  4376. ]
  4377. [[package]]
  4378. name = "tokio-retry"
  4379. version = "0.3.0"
  4380. source = "registry+https://github.com/rust-lang/crates.io-index"
  4381. checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f"
  4382. dependencies = [
  4383. "pin-project",
  4384. "rand 0.8.5",
  4385. "tokio",
  4386. ]
  4387. [[package]]
  4388. name = "tokio-rustls"
  4389. version = "0.23.4"
  4390. source = "registry+https://github.com/rust-lang/crates.io-index"
  4391. checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
  4392. dependencies = [
  4393. "rustls",
  4394. "tokio",
  4395. "webpki",
  4396. ]
  4397. [[package]]
  4398. name = "tokio-stream"
  4399. version = "0.1.14"
  4400. source = "registry+https://github.com/rust-lang/crates.io-index"
  4401. checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
  4402. dependencies = [
  4403. "futures-core",
  4404. "pin-project-lite",
  4405. "tokio",
  4406. "tokio-util",
  4407. ]
  4408. [[package]]
  4409. name = "tokio-tungstenite"
  4410. version = "0.15.0"
  4411. source = "registry+https://github.com/rust-lang/crates.io-index"
  4412. checksum = "511de3f85caf1c98983545490c3d09685fa8eb634e57eec22bb4db271f46cbd8"
  4413. dependencies = [
  4414. "futures-util",
  4415. "log",
  4416. "pin-project",
  4417. "tokio",
  4418. "tungstenite 0.14.0",
  4419. ]
  4420. [[package]]
  4421. name = "tokio-tungstenite"
  4422. version = "0.18.0"
  4423. source = "registry+https://github.com/rust-lang/crates.io-index"
  4424. checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
  4425. dependencies = [
  4426. "futures-util",
  4427. "log",
  4428. "tokio",
  4429. "tungstenite 0.18.0",
  4430. ]
  4431. [[package]]
  4432. name = "tokio-util"
  4433. version = "0.7.7"
  4434. source = "registry+https://github.com/rust-lang/crates.io-index"
  4435. checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
  4436. dependencies = [
  4437. "bytes",
  4438. "futures-core",
  4439. "futures-sink",
  4440. "pin-project-lite",
  4441. "tokio",
  4442. "tracing",
  4443. ]
  4444. [[package]]
  4445. name = "toml"
  4446. version = "0.5.11"
  4447. source = "registry+https://github.com/rust-lang/crates.io-index"
  4448. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  4449. dependencies = [
  4450. "serde",
  4451. ]
  4452. [[package]]
  4453. name = "toml"
  4454. version = "0.7.5"
  4455. source = "registry+https://github.com/rust-lang/crates.io-index"
  4456. checksum = "1ebafdf5ad1220cb59e7d17cf4d2c72015297b75b19a10472f99b89225089240"
  4457. dependencies = [
  4458. "serde",
  4459. "serde_spanned",
  4460. "toml_datetime",
  4461. "toml_edit",
  4462. ]
  4463. [[package]]
  4464. name = "toml_datetime"
  4465. version = "0.6.3"
  4466. source = "registry+https://github.com/rust-lang/crates.io-index"
  4467. checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
  4468. dependencies = [
  4469. "serde",
  4470. ]
  4471. [[package]]
  4472. name = "toml_edit"
  4473. version = "0.19.11"
  4474. source = "registry+https://github.com/rust-lang/crates.io-index"
  4475. checksum = "266f016b7f039eec8a1a80dfe6156b633d208b9fccca5e4db1d6775b0c4e34a7"
  4476. dependencies = [
  4477. "indexmap 2.0.0",
  4478. "serde",
  4479. "serde_spanned",
  4480. "toml_datetime",
  4481. "winnow",
  4482. ]
  4483. [[package]]
  4484. name = "tonic"
  4485. version = "0.8.3"
  4486. source = "registry+https://github.com/rust-lang/crates.io-index"
  4487. checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
  4488. dependencies = [
  4489. "async-stream",
  4490. "async-trait",
  4491. "axum",
  4492. "base64 0.13.1",
  4493. "bytes",
  4494. "futures-core",
  4495. "futures-util",
  4496. "h2",
  4497. "http",
  4498. "http-body",
  4499. "hyper",
  4500. "hyper-timeout",
  4501. "percent-encoding",
  4502. "pin-project",
  4503. "prost",
  4504. "prost-derive",
  4505. "tokio",
  4506. "tokio-stream",
  4507. "tokio-util",
  4508. "tower",
  4509. "tower-layer",
  4510. "tower-service",
  4511. "tracing",
  4512. "tracing-futures",
  4513. ]
  4514. [[package]]
  4515. name = "tower"
  4516. version = "0.4.13"
  4517. source = "registry+https://github.com/rust-lang/crates.io-index"
  4518. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  4519. dependencies = [
  4520. "futures-core",
  4521. "futures-util",
  4522. "indexmap 1.9.3",
  4523. "pin-project",
  4524. "pin-project-lite",
  4525. "rand 0.8.5",
  4526. "slab",
  4527. "tokio",
  4528. "tokio-util",
  4529. "tower-layer",
  4530. "tower-service",
  4531. "tracing",
  4532. ]
  4533. [[package]]
  4534. name = "tower-layer"
  4535. version = "0.3.2"
  4536. source = "registry+https://github.com/rust-lang/crates.io-index"
  4537. checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
  4538. [[package]]
  4539. name = "tower-service"
  4540. version = "0.3.2"
  4541. source = "registry+https://github.com/rust-lang/crates.io-index"
  4542. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  4543. [[package]]
  4544. name = "tracing"
  4545. version = "0.1.37"
  4546. source = "registry+https://github.com/rust-lang/crates.io-index"
  4547. checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
  4548. dependencies = [
  4549. "cfg-if",
  4550. "log",
  4551. "pin-project-lite",
  4552. "tracing-attributes",
  4553. "tracing-core",
  4554. ]
  4555. [[package]]
  4556. name = "tracing-appender"
  4557. version = "0.1.2"
  4558. source = "registry+https://github.com/rust-lang/crates.io-index"
  4559. checksum = "9965507e507f12c8901432a33e31131222abac31edd90cabbcf85cf544b7127a"
  4560. dependencies = [
  4561. "chrono",
  4562. "crossbeam-channel",
  4563. "tracing-subscriber 0.2.25",
  4564. ]
  4565. [[package]]
  4566. name = "tracing-attributes"
  4567. version = "0.1.23"
  4568. source = "registry+https://github.com/rust-lang/crates.io-index"
  4569. checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
  4570. dependencies = [
  4571. "proc-macro2",
  4572. "quote",
  4573. "syn 1.0.109",
  4574. ]
  4575. [[package]]
  4576. name = "tracing-bunyan-formatter"
  4577. version = "0.2.6"
  4578. source = "registry+https://github.com/rust-lang/crates.io-index"
  4579. checksum = "c408910c9b7eabc0215fe2b4a89f8ec95581a91cea1f7619f7c78caf14cbc2a1"
  4580. dependencies = [
  4581. "chrono",
  4582. "gethostname",
  4583. "log",
  4584. "serde",
  4585. "serde_json",
  4586. "tracing",
  4587. "tracing-core",
  4588. "tracing-log",
  4589. "tracing-subscriber 0.2.25",
  4590. ]
  4591. [[package]]
  4592. name = "tracing-core"
  4593. version = "0.1.30"
  4594. source = "registry+https://github.com/rust-lang/crates.io-index"
  4595. checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
  4596. dependencies = [
  4597. "once_cell",
  4598. "valuable",
  4599. ]
  4600. [[package]]
  4601. name = "tracing-futures"
  4602. version = "0.2.5"
  4603. source = "registry+https://github.com/rust-lang/crates.io-index"
  4604. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  4605. dependencies = [
  4606. "pin-project",
  4607. "tracing",
  4608. ]
  4609. [[package]]
  4610. name = "tracing-log"
  4611. version = "0.1.3"
  4612. source = "registry+https://github.com/rust-lang/crates.io-index"
  4613. checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
  4614. dependencies = [
  4615. "lazy_static",
  4616. "log",
  4617. "tracing-core",
  4618. ]
  4619. [[package]]
  4620. name = "tracing-serde"
  4621. version = "0.1.3"
  4622. source = "registry+https://github.com/rust-lang/crates.io-index"
  4623. checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
  4624. dependencies = [
  4625. "serde",
  4626. "tracing-core",
  4627. ]
  4628. [[package]]
  4629. name = "tracing-subscriber"
  4630. version = "0.2.25"
  4631. source = "registry+https://github.com/rust-lang/crates.io-index"
  4632. checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71"
  4633. dependencies = [
  4634. "ansi_term",
  4635. "chrono",
  4636. "lazy_static",
  4637. "matchers 0.0.1",
  4638. "regex",
  4639. "serde",
  4640. "serde_json",
  4641. "sharded-slab",
  4642. "smallvec",
  4643. "thread_local",
  4644. "tracing",
  4645. "tracing-core",
  4646. "tracing-log",
  4647. "tracing-serde",
  4648. ]
  4649. [[package]]
  4650. name = "tracing-subscriber"
  4651. version = "0.3.16"
  4652. source = "registry+https://github.com/rust-lang/crates.io-index"
  4653. checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
  4654. dependencies = [
  4655. "matchers 0.1.0",
  4656. "nu-ansi-term",
  4657. "once_cell",
  4658. "regex",
  4659. "sharded-slab",
  4660. "smallvec",
  4661. "thread_local",
  4662. "tracing",
  4663. "tracing-core",
  4664. "tracing-log",
  4665. ]
  4666. [[package]]
  4667. name = "try-lock"
  4668. version = "0.2.4"
  4669. source = "registry+https://github.com/rust-lang/crates.io-index"
  4670. checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
  4671. [[package]]
  4672. name = "tungstenite"
  4673. version = "0.14.0"
  4674. source = "registry+https://github.com/rust-lang/crates.io-index"
  4675. checksum = "a0b2d8558abd2e276b0a8df5c05a2ec762609344191e5fd23e292c910e9165b5"
  4676. dependencies = [
  4677. "base64 0.13.1",
  4678. "byteorder",
  4679. "bytes",
  4680. "http",
  4681. "httparse",
  4682. "log",
  4683. "rand 0.8.5",
  4684. "sha-1",
  4685. "thiserror",
  4686. "url",
  4687. "utf-8",
  4688. ]
  4689. [[package]]
  4690. name = "tungstenite"
  4691. version = "0.18.0"
  4692. source = "registry+https://github.com/rust-lang/crates.io-index"
  4693. checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
  4694. dependencies = [
  4695. "base64 0.13.1",
  4696. "byteorder",
  4697. "bytes",
  4698. "http",
  4699. "httparse",
  4700. "log",
  4701. "rand 0.8.5",
  4702. "sha1",
  4703. "thiserror",
  4704. "url",
  4705. "utf-8",
  4706. ]
  4707. [[package]]
  4708. name = "typenum"
  4709. version = "1.16.0"
  4710. source = "registry+https://github.com/rust-lang/crates.io-index"
  4711. checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
  4712. [[package]]
  4713. name = "ucd-trie"
  4714. version = "0.1.5"
  4715. source = "registry+https://github.com/rust-lang/crates.io-index"
  4716. checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
  4717. [[package]]
  4718. name = "uncased"
  4719. version = "0.9.7"
  4720. source = "registry+https://github.com/rust-lang/crates.io-index"
  4721. checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622"
  4722. dependencies = [
  4723. "version_check",
  4724. ]
  4725. [[package]]
  4726. name = "unic-char-property"
  4727. version = "0.9.0"
  4728. source = "registry+https://github.com/rust-lang/crates.io-index"
  4729. checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
  4730. dependencies = [
  4731. "unic-char-range",
  4732. ]
  4733. [[package]]
  4734. name = "unic-char-range"
  4735. version = "0.9.0"
  4736. source = "registry+https://github.com/rust-lang/crates.io-index"
  4737. checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
  4738. [[package]]
  4739. name = "unic-common"
  4740. version = "0.9.0"
  4741. source = "registry+https://github.com/rust-lang/crates.io-index"
  4742. checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
  4743. [[package]]
  4744. name = "unic-segment"
  4745. version = "0.9.0"
  4746. source = "registry+https://github.com/rust-lang/crates.io-index"
  4747. checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23"
  4748. dependencies = [
  4749. "unic-ucd-segment",
  4750. ]
  4751. [[package]]
  4752. name = "unic-ucd-segment"
  4753. version = "0.9.0"
  4754. source = "registry+https://github.com/rust-lang/crates.io-index"
  4755. checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700"
  4756. dependencies = [
  4757. "unic-char-property",
  4758. "unic-char-range",
  4759. "unic-ucd-version",
  4760. ]
  4761. [[package]]
  4762. name = "unic-ucd-version"
  4763. version = "0.9.0"
  4764. source = "registry+https://github.com/rust-lang/crates.io-index"
  4765. checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
  4766. dependencies = [
  4767. "unic-common",
  4768. ]
  4769. [[package]]
  4770. name = "unicode-bidi"
  4771. version = "0.3.13"
  4772. source = "registry+https://github.com/rust-lang/crates.io-index"
  4773. checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
  4774. [[package]]
  4775. name = "unicode-ident"
  4776. version = "1.0.8"
  4777. source = "registry+https://github.com/rust-lang/crates.io-index"
  4778. checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
  4779. [[package]]
  4780. name = "unicode-normalization"
  4781. version = "0.1.22"
  4782. source = "registry+https://github.com/rust-lang/crates.io-index"
  4783. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  4784. dependencies = [
  4785. "tinyvec",
  4786. ]
  4787. [[package]]
  4788. name = "unicode-segmentation"
  4789. version = "1.10.1"
  4790. source = "registry+https://github.com/rust-lang/crates.io-index"
  4791. checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
  4792. [[package]]
  4793. name = "unicode-width"
  4794. version = "0.1.10"
  4795. source = "registry+https://github.com/rust-lang/crates.io-index"
  4796. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  4797. [[package]]
  4798. name = "untrusted"
  4799. version = "0.7.1"
  4800. source = "registry+https://github.com/rust-lang/crates.io-index"
  4801. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  4802. [[package]]
  4803. name = "url"
  4804. version = "2.3.1"
  4805. source = "registry+https://github.com/rust-lang/crates.io-index"
  4806. checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
  4807. dependencies = [
  4808. "form_urlencoded",
  4809. "idna 0.3.0",
  4810. "percent-encoding",
  4811. ]
  4812. [[package]]
  4813. name = "urlencoding"
  4814. version = "2.1.2"
  4815. source = "registry+https://github.com/rust-lang/crates.io-index"
  4816. checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9"
  4817. [[package]]
  4818. name = "utf-8"
  4819. version = "0.7.6"
  4820. source = "registry+https://github.com/rust-lang/crates.io-index"
  4821. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  4822. [[package]]
  4823. name = "uuid"
  4824. version = "1.3.3"
  4825. source = "registry+https://github.com/rust-lang/crates.io-index"
  4826. checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
  4827. dependencies = [
  4828. "getrandom 0.2.9",
  4829. "serde",
  4830. "sha1_smol",
  4831. ]
  4832. [[package]]
  4833. name = "validator"
  4834. version = "0.16.0"
  4835. source = "registry+https://github.com/rust-lang/crates.io-index"
  4836. checksum = "32ad5bf234c7d3ad1042e5252b7eddb2c4669ee23f32c7dd0e9b7705f07ef591"
  4837. dependencies = [
  4838. "idna 0.2.3",
  4839. "lazy_static",
  4840. "regex",
  4841. "serde",
  4842. "serde_derive",
  4843. "serde_json",
  4844. "url",
  4845. ]
  4846. [[package]]
  4847. name = "valuable"
  4848. version = "0.1.0"
  4849. source = "registry+https://github.com/rust-lang/crates.io-index"
  4850. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  4851. [[package]]
  4852. name = "vcpkg"
  4853. version = "0.2.15"
  4854. source = "registry+https://github.com/rust-lang/crates.io-index"
  4855. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  4856. [[package]]
  4857. name = "version_check"
  4858. version = "0.9.4"
  4859. source = "registry+https://github.com/rust-lang/crates.io-index"
  4860. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  4861. [[package]]
  4862. name = "vsimd"
  4863. version = "0.8.0"
  4864. source = "registry+https://github.com/rust-lang/crates.io-index"
  4865. checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
  4866. [[package]]
  4867. name = "walkdir"
  4868. version = "2.3.3"
  4869. source = "registry+https://github.com/rust-lang/crates.io-index"
  4870. checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
  4871. dependencies = [
  4872. "same-file",
  4873. "winapi-util",
  4874. ]
  4875. [[package]]
  4876. name = "want"
  4877. version = "0.3.0"
  4878. source = "registry+https://github.com/rust-lang/crates.io-index"
  4879. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  4880. dependencies = [
  4881. "log",
  4882. "try-lock",
  4883. ]
  4884. [[package]]
  4885. name = "wasi"
  4886. version = "0.9.0+wasi-snapshot-preview1"
  4887. source = "registry+https://github.com/rust-lang/crates.io-index"
  4888. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  4889. [[package]]
  4890. name = "wasi"
  4891. version = "0.10.0+wasi-snapshot-preview1"
  4892. source = "registry+https://github.com/rust-lang/crates.io-index"
  4893. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  4894. [[package]]
  4895. name = "wasi"
  4896. version = "0.11.0+wasi-snapshot-preview1"
  4897. source = "registry+https://github.com/rust-lang/crates.io-index"
  4898. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  4899. [[package]]
  4900. name = "wasm-bindgen"
  4901. version = "0.2.84"
  4902. source = "registry+https://github.com/rust-lang/crates.io-index"
  4903. checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
  4904. dependencies = [
  4905. "cfg-if",
  4906. "wasm-bindgen-macro",
  4907. ]
  4908. [[package]]
  4909. name = "wasm-bindgen-backend"
  4910. version = "0.2.84"
  4911. source = "registry+https://github.com/rust-lang/crates.io-index"
  4912. checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
  4913. dependencies = [
  4914. "bumpalo",
  4915. "log",
  4916. "once_cell",
  4917. "proc-macro2",
  4918. "quote",
  4919. "syn 1.0.109",
  4920. "wasm-bindgen-shared",
  4921. ]
  4922. [[package]]
  4923. name = "wasm-bindgen-futures"
  4924. version = "0.4.34"
  4925. source = "registry+https://github.com/rust-lang/crates.io-index"
  4926. checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
  4927. dependencies = [
  4928. "cfg-if",
  4929. "js-sys",
  4930. "wasm-bindgen",
  4931. "web-sys",
  4932. ]
  4933. [[package]]
  4934. name = "wasm-bindgen-macro"
  4935. version = "0.2.84"
  4936. source = "registry+https://github.com/rust-lang/crates.io-index"
  4937. checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
  4938. dependencies = [
  4939. "quote",
  4940. "wasm-bindgen-macro-support",
  4941. ]
  4942. [[package]]
  4943. name = "wasm-bindgen-macro-support"
  4944. version = "0.2.84"
  4945. source = "registry+https://github.com/rust-lang/crates.io-index"
  4946. checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
  4947. dependencies = [
  4948. "proc-macro2",
  4949. "quote",
  4950. "syn 1.0.109",
  4951. "wasm-bindgen-backend",
  4952. "wasm-bindgen-shared",
  4953. ]
  4954. [[package]]
  4955. name = "wasm-bindgen-shared"
  4956. version = "0.2.84"
  4957. source = "registry+https://github.com/rust-lang/crates.io-index"
  4958. checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
  4959. [[package]]
  4960. name = "web-sys"
  4961. version = "0.3.61"
  4962. source = "registry+https://github.com/rust-lang/crates.io-index"
  4963. checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
  4964. dependencies = [
  4965. "js-sys",
  4966. "wasm-bindgen",
  4967. ]
  4968. [[package]]
  4969. name = "webpki"
  4970. version = "0.22.0"
  4971. source = "registry+https://github.com/rust-lang/crates.io-index"
  4972. checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
  4973. dependencies = [
  4974. "ring",
  4975. "untrusted",
  4976. ]
  4977. [[package]]
  4978. name = "webpki-roots"
  4979. version = "0.22.6"
  4980. source = "registry+https://github.com/rust-lang/crates.io-index"
  4981. checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
  4982. dependencies = [
  4983. "webpki",
  4984. ]
  4985. [[package]]
  4986. name = "which"
  4987. version = "4.4.0"
  4988. source = "registry+https://github.com/rust-lang/crates.io-index"
  4989. checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
  4990. dependencies = [
  4991. "either",
  4992. "libc",
  4993. "once_cell",
  4994. ]
  4995. [[package]]
  4996. name = "winapi"
  4997. version = "0.3.9"
  4998. source = "registry+https://github.com/rust-lang/crates.io-index"
  4999. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  5000. dependencies = [
  5001. "winapi-i686-pc-windows-gnu",
  5002. "winapi-x86_64-pc-windows-gnu",
  5003. ]
  5004. [[package]]
  5005. name = "winapi-i686-pc-windows-gnu"
  5006. version = "0.4.0"
  5007. source = "registry+https://github.com/rust-lang/crates.io-index"
  5008. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  5009. [[package]]
  5010. name = "winapi-util"
  5011. version = "0.1.5"
  5012. source = "registry+https://github.com/rust-lang/crates.io-index"
  5013. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  5014. dependencies = [
  5015. "winapi",
  5016. ]
  5017. [[package]]
  5018. name = "winapi-x86_64-pc-windows-gnu"
  5019. version = "0.4.0"
  5020. source = "registry+https://github.com/rust-lang/crates.io-index"
  5021. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  5022. [[package]]
  5023. name = "windows"
  5024. version = "0.48.0"
  5025. source = "registry+https://github.com/rust-lang/crates.io-index"
  5026. checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
  5027. dependencies = [
  5028. "windows-targets 0.48.0",
  5029. ]
  5030. [[package]]
  5031. name = "windows-sys"
  5032. version = "0.42.0"
  5033. source = "registry+https://github.com/rust-lang/crates.io-index"
  5034. checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
  5035. dependencies = [
  5036. "windows_aarch64_gnullvm 0.42.2",
  5037. "windows_aarch64_msvc 0.42.2",
  5038. "windows_i686_gnu 0.42.2",
  5039. "windows_i686_msvc 0.42.2",
  5040. "windows_x86_64_gnu 0.42.2",
  5041. "windows_x86_64_gnullvm 0.42.2",
  5042. "windows_x86_64_msvc 0.42.2",
  5043. ]
  5044. [[package]]
  5045. name = "windows-sys"
  5046. version = "0.45.0"
  5047. source = "registry+https://github.com/rust-lang/crates.io-index"
  5048. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  5049. dependencies = [
  5050. "windows-targets 0.42.2",
  5051. ]
  5052. [[package]]
  5053. name = "windows-sys"
  5054. version = "0.48.0"
  5055. source = "registry+https://github.com/rust-lang/crates.io-index"
  5056. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  5057. dependencies = [
  5058. "windows-targets 0.48.0",
  5059. ]
  5060. [[package]]
  5061. name = "windows-targets"
  5062. version = "0.42.2"
  5063. source = "registry+https://github.com/rust-lang/crates.io-index"
  5064. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  5065. dependencies = [
  5066. "windows_aarch64_gnullvm 0.42.2",
  5067. "windows_aarch64_msvc 0.42.2",
  5068. "windows_i686_gnu 0.42.2",
  5069. "windows_i686_msvc 0.42.2",
  5070. "windows_x86_64_gnu 0.42.2",
  5071. "windows_x86_64_gnullvm 0.42.2",
  5072. "windows_x86_64_msvc 0.42.2",
  5073. ]
  5074. [[package]]
  5075. name = "windows-targets"
  5076. version = "0.48.0"
  5077. source = "registry+https://github.com/rust-lang/crates.io-index"
  5078. checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
  5079. dependencies = [
  5080. "windows_aarch64_gnullvm 0.48.0",
  5081. "windows_aarch64_msvc 0.48.0",
  5082. "windows_i686_gnu 0.48.0",
  5083. "windows_i686_msvc 0.48.0",
  5084. "windows_x86_64_gnu 0.48.0",
  5085. "windows_x86_64_gnullvm 0.48.0",
  5086. "windows_x86_64_msvc 0.48.0",
  5087. ]
  5088. [[package]]
  5089. name = "windows_aarch64_gnullvm"
  5090. version = "0.42.2"
  5091. source = "registry+https://github.com/rust-lang/crates.io-index"
  5092. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  5093. [[package]]
  5094. name = "windows_aarch64_gnullvm"
  5095. version = "0.48.0"
  5096. source = "registry+https://github.com/rust-lang/crates.io-index"
  5097. checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
  5098. [[package]]
  5099. name = "windows_aarch64_msvc"
  5100. version = "0.42.2"
  5101. source = "registry+https://github.com/rust-lang/crates.io-index"
  5102. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  5103. [[package]]
  5104. name = "windows_aarch64_msvc"
  5105. version = "0.48.0"
  5106. source = "registry+https://github.com/rust-lang/crates.io-index"
  5107. checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
  5108. [[package]]
  5109. name = "windows_i686_gnu"
  5110. version = "0.42.2"
  5111. source = "registry+https://github.com/rust-lang/crates.io-index"
  5112. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  5113. [[package]]
  5114. name = "windows_i686_gnu"
  5115. version = "0.48.0"
  5116. source = "registry+https://github.com/rust-lang/crates.io-index"
  5117. checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
  5118. [[package]]
  5119. name = "windows_i686_msvc"
  5120. version = "0.42.2"
  5121. source = "registry+https://github.com/rust-lang/crates.io-index"
  5122. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  5123. [[package]]
  5124. name = "windows_i686_msvc"
  5125. version = "0.48.0"
  5126. source = "registry+https://github.com/rust-lang/crates.io-index"
  5127. checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
  5128. [[package]]
  5129. name = "windows_x86_64_gnu"
  5130. version = "0.42.2"
  5131. source = "registry+https://github.com/rust-lang/crates.io-index"
  5132. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  5133. [[package]]
  5134. name = "windows_x86_64_gnu"
  5135. version = "0.48.0"
  5136. source = "registry+https://github.com/rust-lang/crates.io-index"
  5137. checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
  5138. [[package]]
  5139. name = "windows_x86_64_gnullvm"
  5140. version = "0.42.2"
  5141. source = "registry+https://github.com/rust-lang/crates.io-index"
  5142. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  5143. [[package]]
  5144. name = "windows_x86_64_gnullvm"
  5145. version = "0.48.0"
  5146. source = "registry+https://github.com/rust-lang/crates.io-index"
  5147. checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
  5148. [[package]]
  5149. name = "windows_x86_64_msvc"
  5150. version = "0.42.2"
  5151. source = "registry+https://github.com/rust-lang/crates.io-index"
  5152. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  5153. [[package]]
  5154. name = "windows_x86_64_msvc"
  5155. version = "0.48.0"
  5156. source = "registry+https://github.com/rust-lang/crates.io-index"
  5157. checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
  5158. [[package]]
  5159. name = "winnow"
  5160. version = "0.4.7"
  5161. source = "registry+https://github.com/rust-lang/crates.io-index"
  5162. checksum = "ca0ace3845f0d96209f0375e6d367e3eb87eb65d27d445bdc9f1843a26f39448"
  5163. dependencies = [
  5164. "memchr",
  5165. ]
  5166. [[package]]
  5167. name = "winreg"
  5168. version = "0.10.1"
  5169. source = "registry+https://github.com/rust-lang/crates.io-index"
  5170. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  5171. dependencies = [
  5172. "winapi",
  5173. ]
  5174. [[package]]
  5175. name = "xmlparser"
  5176. version = "0.13.5"
  5177. source = "registry+https://github.com/rust-lang/crates.io-index"
  5178. checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd"
  5179. [[package]]
  5180. name = "y-sync"
  5181. version = "0.3.1"
  5182. source = "registry+https://github.com/rust-lang/crates.io-index"
  5183. checksum = "f54d34b68ec4514a0659838c2b1ba867c571b20b3804a1338dacf4fa9062d801"
  5184. dependencies = [
  5185. "lib0",
  5186. "thiserror",
  5187. "yrs",
  5188. ]
  5189. [[package]]
  5190. name = "yaml-rust"
  5191. version = "0.4.5"
  5192. source = "registry+https://github.com/rust-lang/crates.io-index"
  5193. checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
  5194. dependencies = [
  5195. "linked-hash-map",
  5196. ]
  5197. [[package]]
  5198. name = "yrs"
  5199. version = "0.16.5"
  5200. source = "registry+https://github.com/rust-lang/crates.io-index"
  5201. checksum = "4c2aef2bf89b4f7c003f9c73f1c8097427ca32e1d006443f3f607f11e79a797b"
  5202. dependencies = [
  5203. "atomic_refcell",
  5204. "lib0",
  5205. "rand 0.7.3",
  5206. "smallstr",
  5207. "smallvec",
  5208. "thiserror",
  5209. ]
  5210. [[package]]
  5211. name = "zeroize"
  5212. version = "1.6.0"
  5213. source = "registry+https://github.com/rust-lang/crates.io-index"
  5214. checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
  5215. [[package]]
  5216. name = "zstd-sys"
  5217. version = "2.0.8+zstd.1.5.5"
  5218. source = "registry+https://github.com/rust-lang/crates.io-index"
  5219. checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
  5220. dependencies = [
  5221. "cc",
  5222. "libc",
  5223. "pkg-config",
  5224. ]