-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig.zon
45 lines (43 loc) · 1.75 KB
/
build.zig.zon
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
.{
.name = "playground",
.version = "0.0.0-alpha",
.dependencies = .{
.defmt = .{
.url = "git+https://github.com/elpekenin/defmt#7d63bb7dbc28f1b5dc5ffaa73a84781da3e410ae",
.hash = "12204e7f12d3eba173733b2db680e5b59ed72358ffc26edef3a70f2ca6d1b0f0ab10",
},
.foundation = .{
.url = "git+https://github.com/ZigEmbeddedGroup/foundation-libc#5281055623dff89af7b05572f5aebae0f606e6a1",
.hash = "1220048600075db8d58faa59d9671e7e4056d134d1f53b0efd9774d01321ef3e343e",
},
.hal = .{
.path = "modules/hal",
},
.picolibc = .{
.url = "git+https://github.com/allyourcodebase/picolibc-zig#7a128e1d7a3781b3eae7cf3d7c59c66a2bee36e7",
.hash = "1220e83a23185cb5a9749e107a3ee4d725f50dc176f48460a89ecd545d249e8f1e87",
},
.rtt = .{
.path = "../zig-rtt", // 0.14 patches
// .url = "git+https://github.com/haydenridd/zig-rtt#595a42f4b80a77ffa87619f2a61ddc1b8ff53df1",
// .hash = "12205fd51be74c1f7c77283fb5e7c70fb2f631cfed0aa8d71bd9f65abe4900491099",
},
.ushell = .{
.url = "git+https://github.com/elpekenin/ushell#d268ef53f395c60d88396c06661da21a41245c10",
.hash = "12202984377f6e9785cbc25803656a4807dfeb46d358e3af0fb49bd0782883145a2b",
},
.zfat = .{
.url = "git+https://github.com/ZigEmbeddedGroup/zfat#0c86f71e85908882ea01aaf58a351eeaeb08040f",
.hash = "1220e8349097f005ff3da61e3680717b7bd7a72314a5c0cdb4bac72de7313062edb7",
},
},
.paths = .{
"build",
"modules",
"programs",
"build.zig",
"build.zig.zon",
"common.ld",
"stm32h7rsxx_hal_conf.h.in",
},
}