Skip to content

Commit 7043f2e

Browse files
committed
feat: starting on chapter 8
Signed-off-by: Fredrik Klingenberg <[email protected]>
1 parent 2dbc9fd commit 7043f2e

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

.github/workflows/rust.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
"enum-pattern-matching",
2424
"backyard",
2525
"my-project",
26-
"restaurant"]
26+
"restaurant",
27+
"collections"]
2728

2829
steps:
2930
- uses: actions/checkout@v4

Cargo.lock

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ members = [
99
"projects/my-project",
1010
"projects/backyard",
1111
"projects/restaurant",
12+
"projects/collections",
1213
]

projects/collections/Cargo.toml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "collections"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]

projects/collections/src/main.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)