First commit
[evpf.git] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 [[package]]
4 name = "aho-corasick"
5 version = "0.7.10"
6 source = "registry+https://github.com/rust-lang/crates.io-index"
7 checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
8 dependencies = [
9 "memchr",
10 ]
11
12 [[package]]
13 name = "evpf"
14 version = "0.1.0"
15 dependencies = [
16 "regex",
17 ]
18
19 [[package]]
20 name = "lazy_static"
21 version = "1.4.0"
22 source = "registry+https://github.com/rust-lang/crates.io-index"
23 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
24
25 [[package]]
26 name = "memchr"
27 version = "2.3.3"
28 source = "registry+https://github.com/rust-lang/crates.io-index"
29 checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
30
31 [[package]]
32 name = "regex"
33 version = "1.3.8"
34 source = "registry+https://github.com/rust-lang/crates.io-index"
35 checksum = "226ddd1197737bcb937489322ec1b9edaac1709d46792886e70f2113923585a6"
36 dependencies = [
37 "aho-corasick",
38 "memchr",
39 "regex-syntax",
40 "thread_local",
41 ]
42
43 [[package]]
44 name = "regex-syntax"
45 version = "0.6.18"
46 source = "registry+https://github.com/rust-lang/crates.io-index"
47 checksum = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8"
48
49 [[package]]
50 name = "thread_local"
51 version = "1.0.1"
52 source = "registry+https://github.com/rust-lang/crates.io-index"
53 checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
54 dependencies = [
55 "lazy_static",
56 ]