Cargo.lock

Fri, 13 Oct 2023 13:32:15 -0500

author
Tuomo Valkonen <tuomov@iki.fi>
date
Fri, 13 Oct 2023 13:32:15 -0500
changeset 22
013274b0b388
parent 8
4e09b7829b51
permissions
-rw-r--r--

Update Cargo.lock to stop build failures with current nightly rust.

0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
1 # This file is automatically @generated by Cargo.
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
2 # It is not intended for manual editing.
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
3 version = 3
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
4
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
5 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
6 name = "alg_tools"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
7 version = "0.1.0"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
8 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
9 "colored",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
10 "cpu-time",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
11 "csv",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
12 "itertools",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
13 "nalgebra",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
14 "num",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
15 "num-traits",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
16 "numeric_literals",
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
17 "rayon",
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
18 "serde",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
19 "serde_json",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
20 "trait-set",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
21 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
22
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
23 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
24 name = "approx"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
25 version = "0.5.1"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
26 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
27 checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
28 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
29 "num-traits",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
30 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
31
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
32 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
33 name = "autocfg"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
34 version = "1.1.0"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
35 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
36 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
37
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
38 [[package]]
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
39 name = "bitflags"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
40 version = "2.4.0"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
41 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
42 checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
43
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
44 [[package]]
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
45 name = "bstr"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
46 version = "0.2.17"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
47 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
48 checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
49 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
50 "lazy_static",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
51 "memchr",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
52 "regex-automata",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
53 "serde",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
54 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
55
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
56 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
57 name = "bytemuck"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
58 version = "1.14.0"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
59 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
60 checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
61
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
62 [[package]]
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
63 name = "cfg-if"
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
64 version = "1.0.0"
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
65 source = "registry+https://github.com/rust-lang/crates.io-index"
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
66 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
67
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
68 [[package]]
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
69 name = "colored"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
70 version = "2.0.4"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
71 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
72 checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
73 dependencies = [
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
74 "is-terminal",
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
75 "lazy_static",
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
76 "windows-sys",
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
77 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
78
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
79 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
80 name = "cpu-time"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
81 version = "1.0.0"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
82 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
83 checksum = "e9e393a7668fe1fad3075085b86c781883000b4ede868f43627b34a87c8b7ded"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
84 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
85 "libc",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
86 "winapi",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
87 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
88
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
89 [[package]]
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
90 name = "crossbeam-deque"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
91 version = "0.8.3"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
92 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
93 checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
94 dependencies = [
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
95 "cfg-if",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
96 "crossbeam-epoch",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
97 "crossbeam-utils",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
98 ]
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
99
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
100 [[package]]
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
101 name = "crossbeam-epoch"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
102 version = "0.9.15"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
103 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
104 checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
105 dependencies = [
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
106 "autocfg",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
107 "cfg-if",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
108 "crossbeam-utils",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
109 "memoffset",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
110 "scopeguard",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
111 ]
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
112
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
113 [[package]]
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
114 name = "crossbeam-utils"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
115 version = "0.8.16"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
116 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
117 checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
118 dependencies = [
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
119 "cfg-if",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
120 ]
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
121
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
122 [[package]]
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
123 name = "csv"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
124 version = "1.1.6"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
125 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
126 checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
127 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
128 "bstr",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
129 "csv-core",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
130 "itoa 0.4.8",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
131 "ryu",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
132 "serde",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
133 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
134
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
135 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
136 name = "csv-core"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
137 version = "0.1.11"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
138 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
139 checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
140 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
141 "memchr",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
142 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
143
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
144 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
145 name = "either"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
146 version = "1.9.0"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
147 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
148 checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
149
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
150 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
151 name = "errno"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
152 version = "0.3.5"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
153 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
154 checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
155 dependencies = [
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
156 "libc",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
157 "windows-sys",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
158 ]
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
159
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
160 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
161 name = "hermit-abi"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
162 version = "0.3.3"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
163 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
164 checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
165
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
166 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
167 name = "is-terminal"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
168 version = "0.4.9"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
169 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
170 checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
171 dependencies = [
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
172 "hermit-abi",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
173 "rustix",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
174 "windows-sys",
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
175 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
176
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
177 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
178 name = "itertools"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
179 version = "0.10.5"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
180 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
181 checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
182 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
183 "either",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
184 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
185
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
186 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
187 name = "itoa"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
188 version = "0.4.8"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
189 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
190 checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
191
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
192 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
193 name = "itoa"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
194 version = "1.0.9"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
195 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
196 checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
197
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
198 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
199 name = "lazy_static"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
200 version = "1.4.0"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
201 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
202 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
203
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
204 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
205 name = "libc"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
206 version = "0.2.149"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
207 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
208 checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
209
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
210 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
211 name = "linux-raw-sys"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
212 version = "0.4.10"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
213 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
214 checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
215
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
216 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
217 name = "matrixmultiply"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
218 version = "0.3.8"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
219 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
220 checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
221 dependencies = [
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
222 "autocfg",
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
223 "rawpointer",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
224 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
225
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
226 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
227 name = "memchr"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
228 version = "2.6.4"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
229 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
230 checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
231
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
232 [[package]]
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
233 name = "memoffset"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
234 version = "0.9.0"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
235 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
236 checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
237 dependencies = [
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
238 "autocfg",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
239 ]
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
240
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
241 [[package]]
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
242 name = "nalgebra"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
243 version = "0.31.4"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
244 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
245 checksum = "20bd243ab3dbb395b39ee730402d2e5405e448c75133ec49cc977762c4cba3d1"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
246 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
247 "approx",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
248 "matrixmultiply",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
249 "nalgebra-macros",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
250 "num-complex",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
251 "num-rational",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
252 "num-traits",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
253 "simba",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
254 "typenum",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
255 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
256
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
257 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
258 name = "nalgebra-macros"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
259 version = "0.1.0"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
260 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
261 checksum = "01fcc0b8149b4632adc89ac3b7b31a12fb6099a0317a4eb2ebff574ef7de7218"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
262 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
263 "proc-macro2",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
264 "quote",
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
265 "syn 1.0.109",
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
266 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
267
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
268 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
269 name = "num"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
270 version = "0.4.1"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
271 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
272 checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
273 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
274 "num-bigint",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
275 "num-complex",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
276 "num-integer",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
277 "num-iter",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
278 "num-rational",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
279 "num-traits",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
280 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
281
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
282 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
283 name = "num-bigint"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
284 version = "0.4.4"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
285 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
286 checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
287 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
288 "autocfg",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
289 "num-integer",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
290 "num-traits",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
291 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
292
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
293 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
294 name = "num-complex"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
295 version = "0.4.4"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
296 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
297 checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
298 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
299 "num-traits",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
300 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
301
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
302 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
303 name = "num-integer"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
304 version = "0.1.45"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
305 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
306 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
307 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
308 "autocfg",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
309 "num-traits",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
310 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
311
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
312 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
313 name = "num-iter"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
314 version = "0.1.43"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
315 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
316 checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
317 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
318 "autocfg",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
319 "num-integer",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
320 "num-traits",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
321 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
322
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
323 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
324 name = "num-rational"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
325 version = "0.4.1"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
326 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
327 checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
328 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
329 "autocfg",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
330 "num-bigint",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
331 "num-integer",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
332 "num-traits",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
333 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
334
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
335 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
336 name = "num-traits"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
337 version = "0.2.17"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
338 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
339 checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
340 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
341 "autocfg",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
342 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
343
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
344 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
345 name = "numeric_literals"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
346 version = "0.2.0"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
347 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
348 checksum = "095aa67b0b9f2081746998f4f17106bdb51d56dc8c211afca5531b92b83bf98a"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
349 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
350 "quote",
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
351 "syn 1.0.109",
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
352 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
353
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
354 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
355 name = "paste"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
356 version = "1.0.14"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
357 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
358 checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
359
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
360 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
361 name = "proc-macro2"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
362 version = "1.0.69"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
363 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
364 checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
365 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
366 "unicode-ident",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
367 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
368
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
369 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
370 name = "quote"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
371 version = "1.0.33"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
372 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
373 checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
374 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
375 "proc-macro2",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
376 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
377
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
378 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
379 name = "rawpointer"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
380 version = "0.2.1"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
381 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
382 checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
383
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
384 [[package]]
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
385 name = "rayon"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
386 version = "1.8.0"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
387 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
388 checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
389 dependencies = [
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
390 "either",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
391 "rayon-core",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
392 ]
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
393
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
394 [[package]]
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
395 name = "rayon-core"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
396 version = "1.12.0"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
397 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
398 checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
399 dependencies = [
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
400 "crossbeam-deque",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
401 "crossbeam-utils",
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
402 ]
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
403
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
404 [[package]]
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
405 name = "regex-automata"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
406 version = "0.1.10"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
407 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
408 checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
409
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
410 [[package]]
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
411 name = "rustix"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
412 version = "0.38.19"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
413 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
414 checksum = "745ecfa778e66b2b63c88a61cb36e0eea109e803b0b86bf9879fbc77c70e86ed"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
415 dependencies = [
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
416 "bitflags",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
417 "errno",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
418 "libc",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
419 "linux-raw-sys",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
420 "windows-sys",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
421 ]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
422
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
423 [[package]]
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
424 name = "ryu"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
425 version = "1.0.15"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
426 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
427 checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
428
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
429 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
430 name = "safe_arch"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
431 version = "0.7.1"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
432 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
433 checksum = "f398075ce1e6a179b46f51bd88d0598b92b00d3551f1a2d4ac49e771b56ac354"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
434 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
435 "bytemuck",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
436 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
437
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
438 [[package]]
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
439 name = "scopeguard"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
440 version = "1.2.0"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
441 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
442 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
8
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
443
4e09b7829b51 Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents: 0
diff changeset
444 [[package]]
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
445 name = "serde"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
446 version = "1.0.189"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
447 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
448 checksum = "8e422a44e74ad4001bdc8eede9a4570ab52f71190e9c076d14369f38b9200537"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
449 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
450 "serde_derive",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
451 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
452
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
453 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
454 name = "serde_derive"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
455 version = "1.0.189"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
456 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
457 checksum = "1e48d1f918009ce3145511378cf68d613e3b3d9137d67272562080d68a2b32d5"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
458 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
459 "proc-macro2",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
460 "quote",
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
461 "syn 2.0.38",
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
462 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
463
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
464 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
465 name = "serde_json"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
466 version = "1.0.107"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
467 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
468 checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
469 dependencies = [
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
470 "itoa 1.0.9",
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
471 "ryu",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
472 "serde",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
473 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
474
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
475 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
476 name = "simba"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
477 version = "0.7.3"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
478 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
479 checksum = "2f3fd720c48c53cace224ae62bef1bbff363a70c68c4802a78b5cc6159618176"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
480 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
481 "approx",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
482 "num-complex",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
483 "num-traits",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
484 "paste",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
485 "wide",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
486 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
487
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
488 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
489 name = "syn"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
490 version = "1.0.109"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
491 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
492 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
493 dependencies = [
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
494 "proc-macro2",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
495 "quote",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
496 "unicode-ident",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
497 ]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
498
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
499 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
500 name = "syn"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
501 version = "2.0.38"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
502 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
503 checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
504 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
505 "proc-macro2",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
506 "quote",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
507 "unicode-ident",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
508 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
509
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
510 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
511 name = "trait-set"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
512 version = "0.2.0"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
513 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
514 checksum = "875c4c873cc824e362fa9a9419ffa59807244824275a44ad06fec9684fff08f2"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
515 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
516 "proc-macro2",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
517 "quote",
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
518 "syn 1.0.109",
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
519 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
520
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
521 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
522 name = "typenum"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
523 version = "1.17.0"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
524 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
525 checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
526
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
527 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
528 name = "unicode-ident"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
529 version = "1.0.12"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
530 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
531 checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
532
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
533 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
534 name = "wide"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
535 version = "0.7.12"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
536 source = "registry+https://github.com/rust-lang/crates.io-index"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
537 checksum = "ebecebefc38ff1860b4bc47550bbfa63af5746061cf0d29fcd7fa63171602598"
0
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
538 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
539 "bytemuck",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
540 "safe_arch",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
541 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
542
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
543 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
544 name = "winapi"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
545 version = "0.3.9"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
546 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
547 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
548 dependencies = [
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
549 "winapi-i686-pc-windows-gnu",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
550 "winapi-x86_64-pc-windows-gnu",
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
551 ]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
552
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
553 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
554 name = "winapi-i686-pc-windows-gnu"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
555 version = "0.4.0"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
556 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
557 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
558
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
559 [[package]]
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
560 name = "winapi-x86_64-pc-windows-gnu"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
561 version = "0.4.0"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
562 source = "registry+https://github.com/rust-lang/crates.io-index"
9f27689eb130 Initialise new clean repository
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff changeset
563 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
22
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
564
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
565 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
566 name = "windows-sys"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
567 version = "0.48.0"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
568 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
569 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
570 dependencies = [
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
571 "windows-targets",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
572 ]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
573
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
574 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
575 name = "windows-targets"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
576 version = "0.48.5"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
577 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
578 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
579 dependencies = [
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
580 "windows_aarch64_gnullvm",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
581 "windows_aarch64_msvc",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
582 "windows_i686_gnu",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
583 "windows_i686_msvc",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
584 "windows_x86_64_gnu",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
585 "windows_x86_64_gnullvm",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
586 "windows_x86_64_msvc",
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
587 ]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
588
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
589 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
590 name = "windows_aarch64_gnullvm"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
591 version = "0.48.5"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
592 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
593 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
594
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
595 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
596 name = "windows_aarch64_msvc"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
597 version = "0.48.5"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
598 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
599 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
600
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
601 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
602 name = "windows_i686_gnu"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
603 version = "0.48.5"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
604 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
605 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
606
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
607 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
608 name = "windows_i686_msvc"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
609 version = "0.48.5"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
610 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
611 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
612
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
613 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
614 name = "windows_x86_64_gnu"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
615 version = "0.48.5"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
616 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
617 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
618
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
619 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
620 name = "windows_x86_64_gnullvm"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
621 version = "0.48.5"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
622 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
623 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
624
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
625 [[package]]
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
626 name = "windows_x86_64_msvc"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
627 version = "0.48.5"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
628 source = "registry+https://github.com/rust-lang/crates.io-index"
013274b0b388 Update Cargo.lock to stop build failures with current nightly rust.
Tuomo Valkonen <tuomov@iki.fi>
parents: 8
diff changeset
629 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"

mercurial