Cargo.lock 124 KB

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