Cargo.lock 127 KB

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