-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.lock
More file actions
87 lines (76 loc) · 1.37 KB
/
Cargo.lock
File metadata and controls
87 lines (76 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "cc"
version = "1.2.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
dependencies = [
"find-msvc-tools",
"shlex",
]
[[package]]
name = "common"
version = "0.1.0"
[[package]]
name = "drivers"
version = "0.1.0"
dependencies = [
"common",
"hal",
]
[[package]]
name = "find-msvc-tools"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
[[package]]
name = "hal"
version = "0.1.0"
[[package]]
name = "kernel"
version = "0.1.0"
dependencies = [
"common",
"drivers",
"hal",
"memory",
"soc-bcm2710",
"soc-jh7110",
"ui",
]
[[package]]
name = "memory"
version = "0.1.0"
dependencies = [
"common",
]
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
name = "soc-bcm2710"
version = "0.1.0"
dependencies = [
"cc",
"common",
"hal",
]
[[package]]
name = "soc-jh7110"
version = "0.1.0"
dependencies = [
"cc",
"common",
"hal",
]
[[package]]
name = "ui"
version = "0.1.0"
dependencies = [
"drivers",
"hal",
]