The namegen5 website.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

312 lines
7.8 KiB

3 years ago
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "bumpalo"
  5. version = "3.6.1"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "63396b8a4b9de3f4fdfb320ab6080762242f66a8ef174c49d8e19b674db4cdbe"
  8. [[package]]
  9. name = "cfg-if"
  10. version = "1.0.0"
  11. source = "registry+https://github.com/rust-lang/crates.io-index"
  12. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  13. [[package]]
  14. name = "dtoa"
  15. version = "0.4.7"
  16. source = "registry+https://github.com/rust-lang/crates.io-index"
  17. checksum = "88d7ed2934d741c6b37e33e3832298e8850b53fd2d2bea03873375596c7cea4e"
  18. [[package]]
  19. name = "getrandom"
  20. version = "0.1.16"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  23. dependencies = [
  24. "cfg-if",
  25. "js-sys",
  26. "libc",
  27. "wasi",
  28. "wasm-bindgen",
  29. ]
  30. [[package]]
  31. name = "glob"
  32. version = "0.3.0"
  33. source = "registry+https://github.com/rust-lang/crates.io-index"
  34. checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
  35. [[package]]
  36. name = "itoa"
  37. version = "0.4.7"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
  40. [[package]]
  41. name = "js-sys"
  42. version = "0.3.48"
  43. source = "registry+https://github.com/rust-lang/crates.io-index"
  44. checksum = "dc9f84f9b115ce7843d60706df1422a916680bfdfcbdb0447c5614ff9d7e4d78"
  45. dependencies = [
  46. "wasm-bindgen",
  47. ]
  48. [[package]]
  49. name = "lazy_static"
  50. version = "1.4.0"
  51. source = "registry+https://github.com/rust-lang/crates.io-index"
  52. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  53. [[package]]
  54. name = "libc"
  55. version = "0.2.86"
  56. source = "registry+https://github.com/rust-lang/crates.io-index"
  57. checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
  58. [[package]]
  59. name = "linked-hash-map"
  60. version = "0.5.4"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
  63. [[package]]
  64. name = "log"
  65. version = "0.4.14"
  66. source = "registry+https://github.com/rust-lang/crates.io-index"
  67. checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
  68. dependencies = [
  69. "cfg-if",
  70. ]
  71. [[package]]
  72. name = "namegen"
  73. version = "0.1.3"
  74. source = "registry+https://github.com/rust-lang/crates.io-index"
  75. checksum = "5e734aa49099b0a090acd6f8d0d4f7c408d41e2ce529bd1faae21ad4bab65ae3"
  76. dependencies = [
  77. "rand",
  78. "serde",
  79. ]
  80. [[package]]
  81. name = "namegen-compiler"
  82. version = "0.1.0"
  83. dependencies = [
  84. "glob",
  85. "namegen",
  86. "serde",
  87. "serde_derive",
  88. "serde_json",
  89. "serde_yaml",
  90. ]
  91. [[package]]
  92. name = "ppv-lite86"
  93. version = "0.2.10"
  94. source = "registry+https://github.com/rust-lang/crates.io-index"
  95. checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
  96. [[package]]
  97. name = "proc-macro2"
  98. version = "1.0.24"
  99. source = "registry+https://github.com/rust-lang/crates.io-index"
  100. checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
  101. dependencies = [
  102. "unicode-xid",
  103. ]
  104. [[package]]
  105. name = "quote"
  106. version = "1.0.9"
  107. source = "registry+https://github.com/rust-lang/crates.io-index"
  108. checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
  109. dependencies = [
  110. "proc-macro2",
  111. ]
  112. [[package]]
  113. name = "rand"
  114. version = "0.7.3"
  115. source = "registry+https://github.com/rust-lang/crates.io-index"
  116. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  117. dependencies = [
  118. "getrandom",
  119. "libc",
  120. "rand_chacha",
  121. "rand_core",
  122. "rand_hc",
  123. "rand_pcg",
  124. ]
  125. [[package]]
  126. name = "rand_chacha"
  127. version = "0.2.2"
  128. source = "registry+https://github.com/rust-lang/crates.io-index"
  129. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  130. dependencies = [
  131. "ppv-lite86",
  132. "rand_core",
  133. ]
  134. [[package]]
  135. name = "rand_core"
  136. version = "0.5.1"
  137. source = "registry+https://github.com/rust-lang/crates.io-index"
  138. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  139. dependencies = [
  140. "getrandom",
  141. ]
  142. [[package]]
  143. name = "rand_hc"
  144. version = "0.2.0"
  145. source = "registry+https://github.com/rust-lang/crates.io-index"
  146. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  147. dependencies = [
  148. "rand_core",
  149. ]
  150. [[package]]
  151. name = "rand_pcg"
  152. version = "0.2.1"
  153. source = "registry+https://github.com/rust-lang/crates.io-index"
  154. checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
  155. dependencies = [
  156. "rand_core",
  157. ]
  158. [[package]]
  159. name = "ryu"
  160. version = "1.0.5"
  161. source = "registry+https://github.com/rust-lang/crates.io-index"
  162. checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
  163. [[package]]
  164. name = "serde"
  165. version = "1.0.123"
  166. source = "registry+https://github.com/rust-lang/crates.io-index"
  167. checksum = "92d5161132722baa40d802cc70b15262b98258453e85e5d1d365c757c73869ae"
  168. dependencies = [
  169. "serde_derive",
  170. ]
  171. [[package]]
  172. name = "serde_derive"
  173. version = "1.0.123"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. checksum = "9391c295d64fc0abb2c556bad848f33cb8296276b1ad2677d1ae1ace4f258f31"
  176. dependencies = [
  177. "proc-macro2",
  178. "quote",
  179. "syn",
  180. ]
  181. [[package]]
  182. name = "serde_json"
  183. version = "1.0.64"
  184. source = "registry+https://github.com/rust-lang/crates.io-index"
  185. checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
  186. dependencies = [
  187. "itoa",
  188. "ryu",
  189. "serde",
  190. ]
  191. [[package]]
  192. name = "serde_yaml"
  193. version = "0.8.17"
  194. source = "registry+https://github.com/rust-lang/crates.io-index"
  195. checksum = "15654ed4ab61726bf918a39cb8d98a2e2995b002387807fa6ba58fdf7f59bb23"
  196. dependencies = [
  197. "dtoa",
  198. "linked-hash-map",
  199. "serde",
  200. "yaml-rust",
  201. ]
  202. [[package]]
  203. name = "syn"
  204. version = "1.0.60"
  205. source = "registry+https://github.com/rust-lang/crates.io-index"
  206. checksum = "c700597eca8a5a762beb35753ef6b94df201c81cca676604f547495a0d7f0081"
  207. dependencies = [
  208. "proc-macro2",
  209. "quote",
  210. "unicode-xid",
  211. ]
  212. [[package]]
  213. name = "unicode-xid"
  214. version = "0.2.1"
  215. source = "registry+https://github.com/rust-lang/crates.io-index"
  216. checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
  217. [[package]]
  218. name = "wasi"
  219. version = "0.9.0+wasi-snapshot-preview1"
  220. source = "registry+https://github.com/rust-lang/crates.io-index"
  221. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  222. [[package]]
  223. name = "wasm-bindgen"
  224. version = "0.2.71"
  225. source = "registry+https://github.com/rust-lang/crates.io-index"
  226. checksum = "7ee1280240b7c461d6a0071313e08f34a60b0365f14260362e5a2b17d1d31aa7"
  227. dependencies = [
  228. "cfg-if",
  229. "wasm-bindgen-macro",
  230. ]
  231. [[package]]
  232. name = "wasm-bindgen-backend"
  233. version = "0.2.71"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "5b7d8b6942b8bb3a9b0e73fc79b98095a27de6fa247615e59d096754a3bc2aa8"
  236. dependencies = [
  237. "bumpalo",
  238. "lazy_static",
  239. "log",
  240. "proc-macro2",
  241. "quote",
  242. "syn",
  243. "wasm-bindgen-shared",
  244. ]
  245. [[package]]
  246. name = "wasm-bindgen-macro"
  247. version = "0.2.71"
  248. source = "registry+https://github.com/rust-lang/crates.io-index"
  249. checksum = "e5ac38da8ef716661f0f36c0d8320b89028efe10c7c0afde65baffb496ce0d3b"
  250. dependencies = [
  251. "quote",
  252. "wasm-bindgen-macro-support",
  253. ]
  254. [[package]]
  255. name = "wasm-bindgen-macro-support"
  256. version = "0.2.71"
  257. source = "registry+https://github.com/rust-lang/crates.io-index"
  258. checksum = "cc053ec74d454df287b9374ee8abb36ffd5acb95ba87da3ba5b7d3fe20eb401e"
  259. dependencies = [
  260. "proc-macro2",
  261. "quote",
  262. "syn",
  263. "wasm-bindgen-backend",
  264. "wasm-bindgen-shared",
  265. ]
  266. [[package]]
  267. name = "wasm-bindgen-shared"
  268. version = "0.2.71"
  269. source = "registry+https://github.com/rust-lang/crates.io-index"
  270. checksum = "7d6f8ec44822dd71f5f221a5847fb34acd9060535c1211b70a05844c0f6383b1"
  271. [[package]]
  272. name = "yaml-rust"
  273. version = "0.4.5"
  274. source = "registry+https://github.com/rust-lang/crates.io-index"
  275. checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
  276. dependencies = [
  277. "linked-hash-map",
  278. ]