aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-09-13 17:50:25 +0100
committerAkshay <[email protected]>2021-09-13 17:50:25 +0100
commit4152367f5dee2a70ff49f4aff4040d5d433b8e44 (patch)
treefea606b3121702ae2f714f51697135e3c7b9a9ee /Cargo.lock
parent7a3c3822ba4a368b0475bc5de89ced78fa8b3cb5 (diff)
add demo lint: bool_comparison
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock179
1 files changed, 179 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..73188a4
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,179 @@
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 3
4
5[[package]]
6name = "ariadne"
7version = "0.1.3"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "7080ae01b2f0c312065d4914cd0f0de045eb8832e9415b355106a6cff3073cb4"
10dependencies = [
11 "yansi",
12]
13
14[[package]]
15name = "autocfg"
16version = "1.0.1"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
19
20[[package]]
21name = "bin"
22version = "0.1.0"
23dependencies = [
24 "ariadne",
25 "lib",
26]
27
28[[package]]
29name = "cbitset"
30version = "0.2.0"
31source = "registry+https://github.com/rust-lang/crates.io-index"
32checksum = "29b6ad25ae296159fb0da12b970b2fe179b234584d7cd294c891e2bbb284466b"
33dependencies = [
34 "num-traits",
35]
36
37[[package]]
38name = "countme"
39version = "2.0.4"
40source = "registry+https://github.com/rust-lang/crates.io-index"
41checksum = "328b822bdcba4d4e402be8d9adb6eebf269f969f8eadef977a553ff3c4fbcb58"
42
43[[package]]
44name = "hashbrown"
45version = "0.9.1"
46source = "registry+https://github.com/rust-lang/crates.io-index"
47checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
48
49[[package]]
50name = "if_chain"
51version = "1.0.2"
52source = "registry+https://github.com/rust-lang/crates.io-index"
53checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
54
55[[package]]
56name = "lazy_static"
57version = "1.4.0"
58source = "registry+https://github.com/rust-lang/crates.io-index"
59checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
60
61[[package]]
62name = "lib"
63version = "0.1.0"
64dependencies = [
65 "if_chain",
66 "lazy_static",
67 "macros",
68 "rnix",
69]
70
71[[package]]
72name = "macros"
73version = "0.1.0"
74dependencies = [
75 "proc-macro2",
76 "quote",
77 "syn",
78]
79
80[[package]]
81name = "memoffset"
82version = "0.6.4"
83source = "registry+https://github.com/rust-lang/crates.io-index"
84checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
85dependencies = [
86 "autocfg",
87]
88
89[[package]]
90name = "num-traits"
91version = "0.2.14"
92source = "registry+https://github.com/rust-lang/crates.io-index"
93checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
94dependencies = [
95 "autocfg",
96]
97
98[[package]]
99name = "proc-macro2"
100version = "1.0.29"
101source = "registry+https://github.com/rust-lang/crates.io-index"
102checksum = "b9f5105d4fdaab20335ca9565e106a5d9b82b6219b5ba735731124ac6711d23d"
103dependencies = [
104 "unicode-xid",
105]
106
107[[package]]
108name = "quote"
109version = "1.0.9"
110source = "registry+https://github.com/rust-lang/crates.io-index"
111checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
112dependencies = [
113 "proc-macro2",
114]
115
116[[package]]
117name = "rnix"
118version = "0.9.0"
119source = "registry+https://github.com/rust-lang/crates.io-index"
120checksum = "1b37f8af07a0354606141df076458660af7e22238e4117a041c21c548080addd"
121dependencies = [
122 "cbitset",
123 "rowan",
124 "smol_str",
125]
126
127[[package]]
128name = "rowan"
129version = "0.12.6"
130source = "registry+https://github.com/rust-lang/crates.io-index"
131checksum = "a1b36e449f3702f3b0c821411db1cbdf30fb451726a9456dce5dabcd44420043"
132dependencies = [
133 "countme",
134 "hashbrown",
135 "memoffset",
136 "rustc-hash",
137 "text-size",
138]
139
140[[package]]
141name = "rustc-hash"
142version = "1.1.0"
143source = "registry+https://github.com/rust-lang/crates.io-index"
144checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
145
146[[package]]
147name = "smol_str"
148version = "0.1.18"
149source = "registry+https://github.com/rust-lang/crates.io-index"
150checksum = "b203e79e90905594272c1c97c7af701533d42adaab0beb3859018e477d54a3b0"
151
152[[package]]
153name = "syn"
154version = "1.0.76"
155source = "registry+https://github.com/rust-lang/crates.io-index"
156checksum = "c6f107db402c2c2055242dbf4d2af0e69197202e9faacbef9571bbe47f5a1b84"
157dependencies = [
158 "proc-macro2",
159 "quote",
160 "unicode-xid",
161]
162
163[[package]]
164name = "text-size"
165version = "1.1.0"
166source = "registry+https://github.com/rust-lang/crates.io-index"
167checksum = "288cb548dbe72b652243ea797201f3d481a0609a967980fcc5b2315ea811560a"
168
169[[package]]
170name = "unicode-xid"
171version = "0.2.2"
172source = "registry+https://github.com/rust-lang/crates.io-index"
173checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
174
175[[package]]
176name = "yansi"
177version = "0.5.0"
178source = "registry+https://github.com/rust-lang/crates.io-index"
179checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"