Cargo.lock 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "aho-corasick"
  5. version = "0.7.10"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
  8. dependencies = [
  9. "memchr",
  10. ]
  11. [[package]]
  12. name = "atty"
  13. version = "0.2.14"
  14. source = "registry+https://github.com/rust-lang/crates.io-index"
  15. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  16. dependencies = [
  17. "hermit-abi",
  18. "libc",
  19. "winapi 0.3.8",
  20. ]
  21. [[package]]
  22. name = "autocfg"
  23. version = "1.0.0"
  24. source = "registry+https://github.com/rust-lang/crates.io-index"
  25. checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
  26. [[package]]
  27. name = "base64"
  28. version = "0.9.3"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643"
  31. dependencies = [
  32. "byteorder",
  33. "safemem",
  34. ]
  35. [[package]]
  36. name = "base64"
  37. version = "0.10.1"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
  40. dependencies = [
  41. "byteorder",
  42. ]
  43. [[package]]
  44. name = "bincode"
  45. version = "1.2.1"
  46. source = "registry+https://github.com/rust-lang/crates.io-index"
  47. checksum = "5753e2a71534719bf3f4e57006c3a4f0d2c672a4b676eec84161f763eca87dbf"
  48. dependencies = [
  49. "byteorder",
  50. "serde",
  51. ]
  52. [[package]]
  53. name = "bitflags"
  54. version = "1.2.1"
  55. source = "registry+https://github.com/rust-lang/crates.io-index"
  56. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  57. [[package]]
  58. name = "byteorder"
  59. version = "1.3.4"
  60. source = "registry+https://github.com/rust-lang/crates.io-index"
  61. checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
  62. [[package]]
  63. name = "cc"
  64. version = "1.0.50"
  65. source = "registry+https://github.com/rust-lang/crates.io-index"
  66. checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
  67. [[package]]
  68. name = "cfg-if"
  69. version = "0.1.10"
  70. source = "registry+https://github.com/rust-lang/crates.io-index"
  71. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  72. [[package]]
  73. name = "cookie"
  74. version = "0.11.2"
  75. source = "registry+https://github.com/rust-lang/crates.io-index"
  76. checksum = "d9fac5e7bdefb6160fb181ee0eaa6f96704b625c70e6d61c465cb35750a4ea12"
  77. dependencies = [
  78. "base64 0.9.3",
  79. "ring",
  80. "time",
  81. "url",
  82. ]
  83. [[package]]
  84. name = "devise"
  85. version = "0.2.0"
  86. source = "registry+https://github.com/rust-lang/crates.io-index"
  87. checksum = "74e04ba2d03c5fa0d954c061fc8c9c288badadffc272ebb87679a89846de3ed3"
  88. dependencies = [
  89. "devise_codegen",
  90. "devise_core",
  91. ]
  92. [[package]]
  93. name = "devise_codegen"
  94. version = "0.2.0"
  95. source = "registry+https://github.com/rust-lang/crates.io-index"
  96. checksum = "066ceb7928ca93a9bedc6d0e612a8a0424048b0ab1f75971b203d01420c055d7"
  97. dependencies = [
  98. "devise_core",
  99. "quote 0.6.13",
  100. ]
  101. [[package]]
  102. name = "devise_core"
  103. version = "0.2.0"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "cf41c59b22b5e3ec0ea55c7847e5f358d340f3a8d6d53a5cf4f1564967f96487"
  106. dependencies = [
  107. "bitflags",
  108. "proc-macro2 0.4.30",
  109. "quote 0.6.13",
  110. "syn 0.15.44",
  111. ]
  112. [[package]]
  113. name = "filetime"
  114. version = "0.2.8"
  115. source = "registry+https://github.com/rust-lang/crates.io-index"
  116. checksum = "1ff6d4dab0aa0c8e6346d46052e93b13a16cf847b54ed357087c35011048cc7d"
  117. dependencies = [
  118. "cfg-if",
  119. "libc",
  120. "redox_syscall",
  121. "winapi 0.3.8",
  122. ]
  123. [[package]]
  124. name = "fsevent"
  125. version = "0.4.0"
  126. source = "registry+https://github.com/rust-lang/crates.io-index"
  127. checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6"
  128. dependencies = [
  129. "bitflags",
  130. "fsevent-sys",
  131. ]
  132. [[package]]
  133. name = "fsevent-sys"
  134. version = "2.0.1"
  135. source = "registry+https://github.com/rust-lang/crates.io-index"
  136. checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0"
  137. dependencies = [
  138. "libc",
  139. ]
  140. [[package]]
  141. name = "fuchsia-zircon"
  142. version = "0.3.3"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  145. dependencies = [
  146. "bitflags",
  147. "fuchsia-zircon-sys",
  148. ]
  149. [[package]]
  150. name = "fuchsia-zircon-sys"
  151. version = "0.3.3"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  154. [[package]]
  155. name = "glob"
  156. version = "0.3.0"
  157. source = "registry+https://github.com/rust-lang/crates.io-index"
  158. checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
  159. [[package]]
  160. name = "hermit-abi"
  161. version = "0.1.8"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8"
  164. dependencies = [
  165. "libc",
  166. ]
  167. [[package]]
  168. name = "httparse"
  169. version = "1.3.4"
  170. source = "registry+https://github.com/rust-lang/crates.io-index"
  171. checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
  172. [[package]]
  173. name = "hyper"
  174. version = "0.10.16"
  175. source = "registry+https://github.com/rust-lang/crates.io-index"
  176. checksum = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273"
  177. dependencies = [
  178. "base64 0.9.3",
  179. "httparse",
  180. "language-tags",
  181. "log 0.3.9",
  182. "mime",
  183. "num_cpus",
  184. "time",
  185. "traitobject",
  186. "typeable",
  187. "unicase 1.4.2",
  188. "url",
  189. ]
  190. [[package]]
  191. name = "idna"
  192. version = "0.1.5"
  193. source = "registry+https://github.com/rust-lang/crates.io-index"
  194. checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
  195. dependencies = [
  196. "matches",
  197. "unicode-bidi",
  198. "unicode-normalization",
  199. ]
  200. [[package]]
  201. name = "indexmap"
  202. version = "1.3.2"
  203. source = "registry+https://github.com/rust-lang/crates.io-index"
  204. checksum = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292"
  205. dependencies = [
  206. "autocfg",
  207. ]
  208. [[package]]
  209. name = "inotify"
  210. version = "0.7.0"
  211. source = "registry+https://github.com/rust-lang/crates.io-index"
  212. checksum = "24e40d6fd5d64e2082e0c796495c8ef5ad667a96d03e5aaa0becfd9d47bcbfb8"
  213. dependencies = [
  214. "bitflags",
  215. "inotify-sys",
  216. "libc",
  217. ]
  218. [[package]]
  219. name = "inotify-sys"
  220. version = "0.1.3"
  221. source = "registry+https://github.com/rust-lang/crates.io-index"
  222. checksum = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0"
  223. dependencies = [
  224. "libc",
  225. ]
  226. [[package]]
  227. name = "iovec"
  228. version = "0.1.4"
  229. source = "registry+https://github.com/rust-lang/crates.io-index"
  230. checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
  231. dependencies = [
  232. "libc",
  233. ]
  234. [[package]]
  235. name = "itoa"
  236. version = "0.4.5"
  237. source = "registry+https://github.com/rust-lang/crates.io-index"
  238. checksum = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e"
  239. [[package]]
  240. name = "kernel32-sys"
  241. version = "0.2.2"
  242. source = "registry+https://github.com/rust-lang/crates.io-index"
  243. checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  244. dependencies = [
  245. "winapi 0.2.8",
  246. "winapi-build",
  247. ]
  248. [[package]]
  249. name = "language-tags"
  250. version = "0.2.2"
  251. source = "registry+https://github.com/rust-lang/crates.io-index"
  252. checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a"
  253. [[package]]
  254. name = "lazy_static"
  255. version = "1.4.0"
  256. source = "registry+https://github.com/rust-lang/crates.io-index"
  257. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  258. [[package]]
  259. name = "lazycell"
  260. version = "1.2.1"
  261. source = "registry+https://github.com/rust-lang/crates.io-index"
  262. checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
  263. [[package]]
  264. name = "libc"
  265. version = "0.2.67"
  266. source = "registry+https://github.com/rust-lang/crates.io-index"
  267. checksum = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018"
  268. [[package]]
  269. name = "log"
  270. version = "0.3.9"
  271. source = "registry+https://github.com/rust-lang/crates.io-index"
  272. checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
  273. dependencies = [
  274. "log 0.4.8",
  275. ]
  276. [[package]]
  277. name = "log"
  278. version = "0.4.8"
  279. source = "registry+https://github.com/rust-lang/crates.io-index"
  280. checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
  281. dependencies = [
  282. "cfg-if",
  283. ]
  284. [[package]]
  285. name = "matches"
  286. version = "0.1.8"
  287. source = "registry+https://github.com/rust-lang/crates.io-index"
  288. checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
  289. [[package]]
  290. name = "memchr"
  291. version = "2.3.3"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
  294. [[package]]
  295. name = "mime"
  296. version = "0.2.6"
  297. source = "registry+https://github.com/rust-lang/crates.io-index"
  298. checksum = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0"
  299. dependencies = [
  300. "log 0.3.9",
  301. ]
  302. [[package]]
  303. name = "mio"
  304. version = "0.6.21"
  305. source = "registry+https://github.com/rust-lang/crates.io-index"
  306. checksum = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f"
  307. dependencies = [
  308. "cfg-if",
  309. "fuchsia-zircon",
  310. "fuchsia-zircon-sys",
  311. "iovec",
  312. "kernel32-sys",
  313. "libc",
  314. "log 0.4.8",
  315. "miow",
  316. "net2",
  317. "slab",
  318. "winapi 0.2.8",
  319. ]
  320. [[package]]
  321. name = "mio-extras"
  322. version = "2.0.6"
  323. source = "registry+https://github.com/rust-lang/crates.io-index"
  324. checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
  325. dependencies = [
  326. "lazycell",
  327. "log 0.4.8",
  328. "mio",
  329. "slab",
  330. ]
  331. [[package]]
  332. name = "miow"
  333. version = "0.2.1"
  334. source = "registry+https://github.com/rust-lang/crates.io-index"
  335. checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
  336. dependencies = [
  337. "kernel32-sys",
  338. "net2",
  339. "winapi 0.2.8",
  340. "ws2_32-sys",
  341. ]
  342. [[package]]
  343. name = "net2"
  344. version = "0.2.33"
  345. source = "registry+https://github.com/rust-lang/crates.io-index"
  346. checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
  347. dependencies = [
  348. "cfg-if",
  349. "libc",
  350. "winapi 0.3.8",
  351. ]
  352. [[package]]
  353. name = "notify"
  354. version = "4.0.15"
  355. source = "registry+https://github.com/rust-lang/crates.io-index"
  356. checksum = "80ae4a7688d1fab81c5bf19c64fc8db920be8d519ce6336ed4e7efe024724dbd"
  357. dependencies = [
  358. "bitflags",
  359. "filetime",
  360. "fsevent",
  361. "fsevent-sys",
  362. "inotify",
  363. "libc",
  364. "mio",
  365. "mio-extras",
  366. "walkdir",
  367. "winapi 0.3.8",
  368. ]
  369. [[package]]
  370. name = "num_cpus"
  371. version = "1.12.0"
  372. source = "registry+https://github.com/rust-lang/crates.io-index"
  373. checksum = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6"
  374. dependencies = [
  375. "hermit-abi",
  376. "libc",
  377. ]
  378. [[package]]
  379. name = "pear"
  380. version = "0.1.2"
  381. source = "registry+https://github.com/rust-lang/crates.io-index"
  382. checksum = "c26d2b92e47063ffce70d3e3b1bd097af121a9e0db07ca38a6cc1cf0cc85ff25"
  383. dependencies = [
  384. "pear_codegen",
  385. ]
  386. [[package]]
  387. name = "pear_codegen"
  388. version = "0.1.2"
  389. source = "registry+https://github.com/rust-lang/crates.io-index"
  390. checksum = "336db4a192cc7f54efeb0c4e11a9245394824cc3bcbd37ba3ff51240c35d7a6e"
  391. dependencies = [
  392. "proc-macro2 0.4.30",
  393. "quote 0.6.13",
  394. "syn 0.15.44",
  395. "version_check 0.1.5",
  396. "yansi 0.4.0",
  397. ]
  398. [[package]]
  399. name = "percent-encoding"
  400. version = "1.0.1"
  401. source = "registry+https://github.com/rust-lang/crates.io-index"
  402. checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
  403. [[package]]
  404. name = "proc-macro2"
  405. version = "0.4.30"
  406. source = "registry+https://github.com/rust-lang/crates.io-index"
  407. checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
  408. dependencies = [
  409. "unicode-xid 0.1.0",
  410. ]
  411. [[package]]
  412. name = "proc-macro2"
  413. version = "1.0.9"
  414. source = "registry+https://github.com/rust-lang/crates.io-index"
  415. checksum = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435"
  416. dependencies = [
  417. "unicode-xid 0.2.0",
  418. ]
  419. [[package]]
  420. name = "quote"
  421. version = "0.6.13"
  422. source = "registry+https://github.com/rust-lang/crates.io-index"
  423. checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
  424. dependencies = [
  425. "proc-macro2 0.4.30",
  426. ]
  427. [[package]]
  428. name = "quote"
  429. version = "1.0.3"
  430. source = "registry+https://github.com/rust-lang/crates.io-index"
  431. checksum = "2bdc6c187c65bca4260c9011c9e3132efe4909da44726bad24cf7572ae338d7f"
  432. dependencies = [
  433. "proc-macro2 1.0.9",
  434. ]
  435. [[package]]
  436. name = "redox_syscall"
  437. version = "0.1.56"
  438. source = "registry+https://github.com/rust-lang/crates.io-index"
  439. checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
  440. [[package]]
  441. name = "regex"
  442. version = "1.3.4"
  443. source = "registry+https://github.com/rust-lang/crates.io-index"
  444. checksum = "322cf97724bea3ee221b78fe25ac9c46114ebb51747ad5babd51a2fc6a8235a8"
  445. dependencies = [
  446. "aho-corasick",
  447. "memchr",
  448. "regex-syntax",
  449. "thread_local",
  450. ]
  451. [[package]]
  452. name = "regex-syntax"
  453. version = "0.6.16"
  454. source = "registry+https://github.com/rust-lang/crates.io-index"
  455. checksum = "1132f845907680735a84409c3bebc64d1364a5683ffbce899550cd09d5eaefc1"
  456. [[package]]
  457. name = "ring"
  458. version = "0.13.5"
  459. source = "registry+https://github.com/rust-lang/crates.io-index"
  460. checksum = "2c4db68a2e35f3497146b7e4563df7d4773a2433230c5e4b448328e31740458a"
  461. dependencies = [
  462. "cc",
  463. "lazy_static",
  464. "libc",
  465. "untrusted",
  466. ]
  467. [[package]]
  468. name = "rocket"
  469. version = "0.4.4"
  470. source = "registry+https://github.com/rust-lang/crates.io-index"
  471. checksum = "e20afbad214b001cabbe31dd270b48b3be980a7153ee2ed8392e241f856d651b"
  472. dependencies = [
  473. "atty",
  474. "base64 0.10.1",
  475. "log 0.4.8",
  476. "memchr",
  477. "num_cpus",
  478. "pear",
  479. "rocket_codegen",
  480. "rocket_http",
  481. "state",
  482. "time",
  483. "toml",
  484. "version_check 0.9.1",
  485. "yansi 0.5.0",
  486. ]
  487. [[package]]
  488. name = "rocket_codegen"
  489. version = "0.4.4"
  490. source = "registry+https://github.com/rust-lang/crates.io-index"
  491. checksum = "2108b35e2c3a35759d3f16cc3002ece05523191d884d3ad6523693fd43324dde"
  492. dependencies = [
  493. "devise",
  494. "glob",
  495. "indexmap",
  496. "quote 0.6.13",
  497. "rocket_http",
  498. "version_check 0.9.1",
  499. "yansi 0.5.0",
  500. ]
  501. [[package]]
  502. name = "rocket_contrib"
  503. version = "0.4.4"
  504. source = "registry+https://github.com/rust-lang/crates.io-index"
  505. checksum = "a10e7471279bc2d4a21b6fddd9589016bb119e6fbb547b216dd54ef237f28341"
  506. dependencies = [
  507. "log 0.4.8",
  508. "notify",
  509. "rocket",
  510. "serde",
  511. "serde_json",
  512. ]
  513. [[package]]
  514. name = "rocket_cors"
  515. version = "0.5.1"
  516. source = "registry+https://github.com/rust-lang/crates.io-index"
  517. checksum = "270a960cba5a0b7928ad74268db7773ce932da6b550478383cefebe9f46c4e13"
  518. dependencies = [
  519. "log 0.3.9",
  520. "regex",
  521. "rocket",
  522. "serde",
  523. "serde_derive",
  524. "unicase 2.6.0",
  525. "unicase_serde",
  526. "url",
  527. ]
  528. [[package]]
  529. name = "rocket_http"
  530. version = "0.4.4"
  531. source = "registry+https://github.com/rust-lang/crates.io-index"
  532. checksum = "6ce8ca76247376ea21cf271af0f95e3f2014596e3e4c7cc04e44ee6242a40ff2"
  533. dependencies = [
  534. "cookie",
  535. "hyper",
  536. "indexmap",
  537. "pear",
  538. "percent-encoding",
  539. "smallvec",
  540. "state",
  541. "time",
  542. "unicode-xid 0.1.0",
  543. ]
  544. [[package]]
  545. name = "ryu"
  546. version = "1.0.2"
  547. source = "registry+https://github.com/rust-lang/crates.io-index"
  548. checksum = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8"
  549. [[package]]
  550. name = "safemem"
  551. version = "0.3.3"
  552. source = "registry+https://github.com/rust-lang/crates.io-index"
  553. checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
  554. [[package]]
  555. name = "same-file"
  556. version = "1.0.6"
  557. source = "registry+https://github.com/rust-lang/crates.io-index"
  558. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  559. dependencies = [
  560. "winapi-util",
  561. ]
  562. [[package]]
  563. name = "serde"
  564. version = "1.0.104"
  565. source = "registry+https://github.com/rust-lang/crates.io-index"
  566. checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
  567. [[package]]
  568. name = "serde_derive"
  569. version = "1.0.104"
  570. source = "registry+https://github.com/rust-lang/crates.io-index"
  571. checksum = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64"
  572. dependencies = [
  573. "proc-macro2 1.0.9",
  574. "quote 1.0.3",
  575. "syn 1.0.16",
  576. ]
  577. [[package]]
  578. name = "serde_json"
  579. version = "1.0.48"
  580. source = "registry+https://github.com/rust-lang/crates.io-index"
  581. checksum = "9371ade75d4c2d6cb154141b9752cf3781ec9c05e0e5cf35060e1e70ee7b9c25"
  582. dependencies = [
  583. "itoa",
  584. "ryu",
  585. "serde",
  586. ]
  587. [[package]]
  588. name = "slab"
  589. version = "0.4.2"
  590. source = "registry+https://github.com/rust-lang/crates.io-index"
  591. checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
  592. [[package]]
  593. name = "smallvec"
  594. version = "1.2.0"
  595. source = "registry+https://github.com/rust-lang/crates.io-index"
  596. checksum = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc"
  597. [[package]]
  598. name = "state"
  599. version = "0.4.1"
  600. source = "registry+https://github.com/rust-lang/crates.io-index"
  601. checksum = "7345c971d1ef21ffdbd103a75990a15eb03604fc8b8852ca8cb418ee1a099028"
  602. [[package]]
  603. name = "syn"
  604. version = "0.15.44"
  605. source = "registry+https://github.com/rust-lang/crates.io-index"
  606. checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
  607. dependencies = [
  608. "proc-macro2 0.4.30",
  609. "quote 0.6.13",
  610. "unicode-xid 0.1.0",
  611. ]
  612. [[package]]
  613. name = "syn"
  614. version = "1.0.16"
  615. source = "registry+https://github.com/rust-lang/crates.io-index"
  616. checksum = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859"
  617. dependencies = [
  618. "proc-macro2 1.0.9",
  619. "quote 1.0.3",
  620. "unicode-xid 0.2.0",
  621. ]
  622. [[package]]
  623. name = "thread_local"
  624. version = "1.0.1"
  625. source = "registry+https://github.com/rust-lang/crates.io-index"
  626. checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
  627. dependencies = [
  628. "lazy_static",
  629. ]
  630. [[package]]
  631. name = "time"
  632. version = "0.1.42"
  633. source = "registry+https://github.com/rust-lang/crates.io-index"
  634. checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
  635. dependencies = [
  636. "libc",
  637. "redox_syscall",
  638. "winapi 0.3.8",
  639. ]
  640. [[package]]
  641. name = "toml"
  642. version = "0.4.10"
  643. source = "registry+https://github.com/rust-lang/crates.io-index"
  644. checksum = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f"
  645. dependencies = [
  646. "serde",
  647. ]
  648. [[package]]
  649. name = "traitobject"
  650. version = "0.1.0"
  651. source = "registry+https://github.com/rust-lang/crates.io-index"
  652. checksum = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079"
  653. [[package]]
  654. name = "typeable"
  655. version = "0.1.2"
  656. source = "registry+https://github.com/rust-lang/crates.io-index"
  657. checksum = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887"
  658. [[package]]
  659. name = "unicase"
  660. version = "1.4.2"
  661. source = "registry+https://github.com/rust-lang/crates.io-index"
  662. checksum = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33"
  663. dependencies = [
  664. "version_check 0.1.5",
  665. ]
  666. [[package]]
  667. name = "unicase"
  668. version = "2.6.0"
  669. source = "registry+https://github.com/rust-lang/crates.io-index"
  670. checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
  671. dependencies = [
  672. "version_check 0.9.1",
  673. ]
  674. [[package]]
  675. name = "unicase_serde"
  676. version = "0.1.0"
  677. source = "registry+https://github.com/rust-lang/crates.io-index"
  678. checksum = "6ef53697679d874d69f3160af80bc28de12730a985d57bdf2b47456ccb8b11f1"
  679. dependencies = [
  680. "serde",
  681. "unicase 2.6.0",
  682. ]
  683. [[package]]
  684. name = "unicode-bidi"
  685. version = "0.3.4"
  686. source = "registry+https://github.com/rust-lang/crates.io-index"
  687. checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
  688. dependencies = [
  689. "matches",
  690. ]
  691. [[package]]
  692. name = "unicode-normalization"
  693. version = "0.1.12"
  694. source = "registry+https://github.com/rust-lang/crates.io-index"
  695. checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"
  696. dependencies = [
  697. "smallvec",
  698. ]
  699. [[package]]
  700. name = "unicode-xid"
  701. version = "0.1.0"
  702. source = "registry+https://github.com/rust-lang/crates.io-index"
  703. checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
  704. [[package]]
  705. name = "unicode-xid"
  706. version = "0.2.0"
  707. source = "registry+https://github.com/rust-lang/crates.io-index"
  708. checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
  709. [[package]]
  710. name = "untrusted"
  711. version = "0.6.2"
  712. source = "registry+https://github.com/rust-lang/crates.io-index"
  713. checksum = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f"
  714. [[package]]
  715. name = "url"
  716. version = "1.7.2"
  717. source = "registry+https://github.com/rust-lang/crates.io-index"
  718. checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
  719. dependencies = [
  720. "idna",
  721. "matches",
  722. "percent-encoding",
  723. ]
  724. [[package]]
  725. name = "version_check"
  726. version = "0.1.5"
  727. source = "registry+https://github.com/rust-lang/crates.io-index"
  728. checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
  729. [[package]]
  730. name = "version_check"
  731. version = "0.9.1"
  732. source = "registry+https://github.com/rust-lang/crates.io-index"
  733. checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"
  734. [[package]]
  735. name = "walkdir"
  736. version = "2.3.1"
  737. source = "registry+https://github.com/rust-lang/crates.io-index"
  738. checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
  739. dependencies = [
  740. "same-file",
  741. "winapi 0.3.8",
  742. "winapi-util",
  743. ]
  744. [[package]]
  745. name = "webrtc_server"
  746. version = "0.1.0"
  747. dependencies = [
  748. "bincode",
  749. "rocket",
  750. "rocket_contrib",
  751. "rocket_cors",
  752. "serde",
  753. "serde_derive",
  754. "serde_json",
  755. ]
  756. [[package]]
  757. name = "winapi"
  758. version = "0.2.8"
  759. source = "registry+https://github.com/rust-lang/crates.io-index"
  760. checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  761. [[package]]
  762. name = "winapi"
  763. version = "0.3.8"
  764. source = "registry+https://github.com/rust-lang/crates.io-index"
  765. checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
  766. dependencies = [
  767. "winapi-i686-pc-windows-gnu",
  768. "winapi-x86_64-pc-windows-gnu",
  769. ]
  770. [[package]]
  771. name = "winapi-build"
  772. version = "0.1.1"
  773. source = "registry+https://github.com/rust-lang/crates.io-index"
  774. checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  775. [[package]]
  776. name = "winapi-i686-pc-windows-gnu"
  777. version = "0.4.0"
  778. source = "registry+https://github.com/rust-lang/crates.io-index"
  779. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  780. [[package]]
  781. name = "winapi-util"
  782. version = "0.1.3"
  783. source = "registry+https://github.com/rust-lang/crates.io-index"
  784. checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80"
  785. dependencies = [
  786. "winapi 0.3.8",
  787. ]
  788. [[package]]
  789. name = "winapi-x86_64-pc-windows-gnu"
  790. version = "0.4.0"
  791. source = "registry+https://github.com/rust-lang/crates.io-index"
  792. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  793. [[package]]
  794. name = "ws2_32-sys"
  795. version = "0.2.1"
  796. source = "registry+https://github.com/rust-lang/crates.io-index"
  797. checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  798. dependencies = [
  799. "winapi 0.2.8",
  800. "winapi-build",
  801. ]
  802. [[package]]
  803. name = "yansi"
  804. version = "0.4.0"
  805. source = "registry+https://github.com/rust-lang/crates.io-index"
  806. checksum = "d60c3b48c9cdec42fb06b3b84b5b087405e1fa1c644a1af3930e4dfafe93de48"
  807. [[package]]
  808. name = "yansi"
  809. version = "0.5.0"
  810. source = "registry+https://github.com/rust-lang/crates.io-index"
  811. checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"