aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-09-10 15:12:30 +0100
committerAkshay <[email protected]>2021-09-10 15:12:30 +0100
commit336e97961ce6cf496ca177ab7ae11f3779bad868 (patch)
tree417d300b3fad61dfe3adc52d141c75a210851eaa /Cargo.lock
init
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock104
1 files changed, 104 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..f09d0c9
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,104 @@
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 3
4
5[[package]]
6name = "anyhow"
7version = "1.0.43"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "28ae2b3dec75a406790005a200b1bd89785afc02517a00ca99ecfe093ee9e6cf"
10
11[[package]]
12name = "autocfg"
13version = "1.0.1"
14source = "registry+https://github.com/rust-lang/crates.io-index"
15checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
16
17[[package]]
18name = "cbitset"
19version = "0.2.0"
20source = "registry+https://github.com/rust-lang/crates.io-index"
21checksum = "29b6ad25ae296159fb0da12b970b2fe179b234584d7cd294c891e2bbb284466b"
22dependencies = [
23 "num-traits",
24]
25
26[[package]]
27name = "countme"
28version = "2.0.4"
29source = "registry+https://github.com/rust-lang/crates.io-index"
30checksum = "328b822bdcba4d4e402be8d9adb6eebf269f969f8eadef977a553ff3c4fbcb58"
31
32[[package]]
33name = "hashbrown"
34version = "0.9.1"
35source = "registry+https://github.com/rust-lang/crates.io-index"
36checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
37
38[[package]]
39name = "memoffset"
40version = "0.6.4"
41source = "registry+https://github.com/rust-lang/crates.io-index"
42checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
43dependencies = [
44 "autocfg",
45]
46
47[[package]]
48name = "nix-analyzer"
49version = "0.1.0"
50dependencies = [
51 "anyhow",
52 "rnix",
53]
54
55[[package]]
56name = "num-traits"
57version = "0.2.14"
58source = "registry+https://github.com/rust-lang/crates.io-index"
59checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
60dependencies = [
61 "autocfg",
62]
63
64[[package]]
65name = "rnix"
66version = "0.9.0"
67source = "registry+https://github.com/rust-lang/crates.io-index"
68checksum = "1b37f8af07a0354606141df076458660af7e22238e4117a041c21c548080addd"
69dependencies = [
70 "cbitset",
71 "rowan",
72 "smol_str",
73]
74
75[[package]]
76name = "rowan"
77version = "0.12.6"
78source = "registry+https://github.com/rust-lang/crates.io-index"
79checksum = "a1b36e449f3702f3b0c821411db1cbdf30fb451726a9456dce5dabcd44420043"
80dependencies = [
81 "countme",
82 "hashbrown",
83 "memoffset",
84 "rustc-hash",
85 "text-size",
86]
87
88[[package]]
89name = "rustc-hash"
90version = "1.1.0"
91source = "registry+https://github.com/rust-lang/crates.io-index"
92checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
93
94[[package]]
95name = "smol_str"
96version = "0.1.18"
97source = "registry+https://github.com/rust-lang/crates.io-index"
98checksum = "b203e79e90905594272c1c97c7af701533d42adaab0beb3859018e477d54a3b0"
99
100[[package]]
101name = "text-size"
102version = "1.1.0"
103source = "registry+https://github.com/rust-lang/crates.io-index"
104checksum = "288cb548dbe72b652243ea797201f3d481a0609a967980fcc5b2315ea811560a"