Skip to content

Commit 5d52412

Browse files
authored
Merge pull request #150 from trifectatechfoundation/push-sxqnlltptyol
Add missing file links in tomls
2 parents 0ee4cde + 64faeff commit 5d52412

File tree

3 files changed

+37
-3
lines changed

3 files changed

+37
-3
lines changed

content/full.track.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ modules = [
55
"mods/B-crate-engineering/mod.toml",
66
"mods/C-multitasking/mod.toml",
77
"mods/D-rust-for-web/mod.toml",
8-
"mods/E-rust-for-systems/mod.toml"
8+
"mods/E-rust-for-systems/mod.toml",
9+
"mods/G-scientific-rust/mod.toml",
910
]

content/mods/E-rust-for-systems/topics/ffi/topic.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ includes = [
3232
"*.qoi",
3333
"*.c",
3434
"*.h",
35+
".gitignore",
3536
]
3637

3738
[[exercises]]
@@ -41,5 +42,9 @@ includes = [
4142
"Cargo.toml",
4243
"Cargo.lock",
4344
"src/**/*",
44-
45+
"*.c",
46+
"*.h",
47+
".gitignore",
48+
"README.md",
49+
"build.rs",
4550
]
Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
name = "Unsafe Rust"
1+
name = "Unsafe Rust"
2+
3+
[[exercises]]
4+
name = "Linked List"
5+
path = "exercises/1-linked-list"
6+
includes = [
7+
"Cargo.toml",
8+
"Cargo.lock",
9+
"src/**/*",
10+
]
11+
12+
[[exercises]]
13+
name = "execve"
14+
path = "exercises/2-execve"
15+
includes = [
16+
"Cargo.toml",
17+
"Cargo.lock",
18+
"src/**/*",
19+
"README.md",
20+
]
21+
22+
[[exercises]]
23+
name = "Tagges union"
24+
path = "exercises/3-tagged-union"
25+
includes = [
26+
"Cargo.toml",
27+
"Cargo.lock",
28+
"src/**/*",
29+
]

0 commit comments

Comments
 (0)