blob: 8a0bb775ff33b635cbb85300b0d1c630398005eb [file] [log] [blame]
Joel Galenson4bf0c302020-10-23 08:03:13 -07001# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
Joel Galensonaa25fe62021-04-01 17:18:00 -07003version = 3
Joel Galenson4bf0c302020-10-23 08:03:13 -07004
5[[package]]
Haibo Huang0cb7a8f2021-01-05 21:36:04 -08006name = "cfg-if"
7version = "1.0.0"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
10
11[[package]]
Joel Galenson4bf0c302020-10-23 08:03:13 -070012name = "env_logger"
13version = "0.6.2"
14source = "registry+https://github.com/rust-lang/crates.io-index"
15checksum = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3"
16dependencies = [
17 "log",
18]
19
20[[package]]
21name = "fuchsia-cprng"
22version = "0.1.1"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
25
26[[package]]
27name = "libc"
Haibo Huang800e8642021-02-17 19:53:43 -080028version = "0.2.86"
Joel Galenson4bf0c302020-10-23 08:03:13 -070029source = "registry+https://github.com/rust-lang/crates.io-index"
Haibo Huang800e8642021-02-17 19:53:43 -080030checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
Joel Galenson4bf0c302020-10-23 08:03:13 -070031
32[[package]]
33name = "log"
Joel Galensonaa25fe62021-04-01 17:18:00 -070034version = "0.4.14"
Joel Galenson4bf0c302020-10-23 08:03:13 -070035source = "registry+https://github.com/rust-lang/crates.io-index"
Joel Galensonaa25fe62021-04-01 17:18:00 -070036checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
Joel Galenson4bf0c302020-10-23 08:03:13 -070037dependencies = [
Joel Galensonaa25fe62021-04-01 17:18:00 -070038 "cfg-if",
Joel Galenson4bf0c302020-10-23 08:03:13 -070039]
40
41[[package]]
42name = "mio"
Joel Galenson0a254c32021-06-21 13:30:46 -070043version = "0.7.13"
Joel Galenson4bf0c302020-10-23 08:03:13 -070044dependencies = [
45 "env_logger",
46 "libc",
47 "log",
48 "miow",
Joel Galenson4bf0c302020-10-23 08:03:13 -070049 "ntapi",
50 "rand",
51 "winapi",
52]
53
54[[package]]
55name = "miow"
Haibo Huangb871bf72020-11-16 17:42:39 -080056version = "0.3.6"
Joel Galenson4bf0c302020-10-23 08:03:13 -070057source = "registry+https://github.com/rust-lang/crates.io-index"
Haibo Huangb871bf72020-11-16 17:42:39 -080058checksum = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897"
Joel Galenson4bf0c302020-10-23 08:03:13 -070059dependencies = [
60 "socket2",
61 "winapi",
62]
63
64[[package]]
Joel Galenson4bf0c302020-10-23 08:03:13 -070065name = "ntapi"
Haibo Huang3a1a5062020-11-02 18:45:36 -080066version = "0.3.6"
Joel Galenson4bf0c302020-10-23 08:03:13 -070067source = "registry+https://github.com/rust-lang/crates.io-index"
Haibo Huang3a1a5062020-11-02 18:45:36 -080068checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
Joel Galenson4bf0c302020-10-23 08:03:13 -070069dependencies = [
70 "winapi",
71]
72
73[[package]]
74name = "rand"
75version = "0.4.6"
76source = "registry+https://github.com/rust-lang/crates.io-index"
77checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
78dependencies = [
79 "fuchsia-cprng",
80 "libc",
81 "rand_core 0.3.1",
82 "rdrand",
83 "winapi",
84]
85
86[[package]]
87name = "rand_core"
88version = "0.3.1"
89source = "registry+https://github.com/rust-lang/crates.io-index"
90checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
91dependencies = [
92 "rand_core 0.4.2",
93]
94
95[[package]]
96name = "rand_core"
97version = "0.4.2"
98source = "registry+https://github.com/rust-lang/crates.io-index"
99checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
100
101[[package]]
102name = "rdrand"
103version = "0.4.0"
104source = "registry+https://github.com/rust-lang/crates.io-index"
105checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
106dependencies = [
107 "rand_core 0.3.1",
108]
109
110[[package]]
Joel Galenson4bf0c302020-10-23 08:03:13 -0700111name = "socket2"
Joel Galensonaa25fe62021-04-01 17:18:00 -0700112version = "0.3.19"
Joel Galenson4bf0c302020-10-23 08:03:13 -0700113source = "registry+https://github.com/rust-lang/crates.io-index"
Joel Galensonaa25fe62021-04-01 17:18:00 -0700114checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
Joel Galenson4bf0c302020-10-23 08:03:13 -0700115dependencies = [
Joel Galensonaa25fe62021-04-01 17:18:00 -0700116 "cfg-if",
Joel Galenson4bf0c302020-10-23 08:03:13 -0700117 "libc",
Joel Galenson4bf0c302020-10-23 08:03:13 -0700118 "winapi",
119]
120
121[[package]]
122name = "winapi"
123version = "0.3.9"
124source = "registry+https://github.com/rust-lang/crates.io-index"
125checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
126dependencies = [
127 "winapi-i686-pc-windows-gnu",
128 "winapi-x86_64-pc-windows-gnu",
129]
130
131[[package]]
132name = "winapi-i686-pc-windows-gnu"
133version = "0.4.0"
134source = "registry+https://github.com/rust-lang/crates.io-index"
135checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
136
137[[package]]
138name = "winapi-x86_64-pc-windows-gnu"
139version = "0.4.0"
140source = "registry+https://github.com/rust-lang/crates.io-index"
141checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"