Skip to content

Commit

Permalink
Attempt at building slides
Browse files Browse the repository at this point in the history
  • Loading branch information
rnijveld committed Feb 23, 2023
1 parent 0c5f3c5 commit a9f9239
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 8 deletions.
3 changes: 3 additions & 0 deletions exercises/book/A2-advanced-intro/mod.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Module A2 - Advanced Syntax, Ownership, references

[Slides](/slides/A2-advanced-intro.pdf)
5 changes: 2 additions & 3 deletions exercises/book/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
- [0 - Installation](./0-install/mod.md)
- [A - Introduction to Rust]()
- [A1 - Language basics](./A1-language-basics/mod.md)
- [A2 - Ecosystem and tools]()
- [A3 - Advanced Syntax, Ownership, references]()
- [A2 - Advanced Syntax, Ownership, references](./A2-advanced-intro/mod.md)
- [A4 - Traits and generics]()
- [B - Application programming](./B-application-programming/mod.md)
- [C - Multitasking]()
- [D - Idiomatic Rust patterns]()
- [E - Rust for web]()
- [F - Safe Unsafe Rust]()
- [G - FFI and Dynamic modules]()
- [P Final project]()
- [P Final project]()
1 change: 1 addition & 0 deletions slides/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
node_modules
.DS_Store
dist
dist-*
/*.pdf
tmp/
yarn-error.log
Expand Down
11 changes: 6 additions & 5 deletions slides/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
"dev-0": "slidev 0-intro.md",
"export-0": "slidev export 0-intro.md",

"build-A1": "slidev build A1-intro-to-rust.md",
"build-A1": "slidev build --out dist-A1 A1-intro-to-rust.md",
"dev-A1": "slidev A1-intro-to-rust.md",
"export-A1": "slidev export A1-intro-to-rust.md",

"build-A2-tools": "slidev build A2-tools.md",
"build-A2-tools": "slidev build --out dist-A2-tools A2-tools.md",
"dev-A2-tools": "slidev A2-tools.md",
"export-A2-tools": "slidev export A2-tools.md",

"build-A2": "slidev build A2-advanced-intro.md",
"build-A2": "slidev build --out dist-A2 --base /slides/A2/ A2-advanced-intro.md",
"dev-A2": "slidev A2-advanced-intro.md",
"export-A2": "slidev export A2-advanced-intro.md",

"build-B": "slidev build B-application-programming.md",
"build-B": "slidev build --out dist-B B-application-programming.md",
"dev-B": "slidev B-application-programming.md",
"export-B": "slidev export B-application-programming.md",

Expand All @@ -27,7 +27,8 @@
"dependencies": {
"@slidev/cli": "^0.35.5",
"@slidev/theme-default": "*",
"@slidev/theme-seriph": "*"
"@slidev/theme-seriph": "*",
"playwright-chromium": "^1.31.1"
},
"name": "rust-workshop"
}
12 changes: 12 additions & 0 deletions slides/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2848,6 +2848,18 @@ plantuml-encoder@^1.4.0:
resolved "https://registry.yarnpkg.com/plantuml-encoder/-/plantuml-encoder-1.4.0.tgz#7899302cf785de956bf1a167e15420feee5975f7"
integrity sha512-sxMwpDw/ySY1WB2CE3+IdMuEcWibJ72DDOsXLkSmEaSzwEUaYBT6DWgOfBiHGCux4q433X6+OEFWjlVqp7gL6g==

playwright-chromium@^1.31.1:
version "1.31.1"
resolved "https://registry.yarnpkg.com/playwright-chromium/-/playwright-chromium-1.31.1.tgz#08f64a729737dd3609aae2f02012e70755112eec"
integrity sha512-3XKJTnD8/uJLIdMVVG8VE22OrT7oOMaGoiL354ETXOGg8hTFcRYYpJYQ+86NIAhqEg9ogCOZqCn6CYWr28iMFw==
dependencies:
playwright-core "1.31.1"

[email protected]:
version "1.31.1"
resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.31.1.tgz#4deeebbb8fb73b512593fe24bea206d8fd85ff7f"
integrity sha512-JTyX4kV3/LXsvpHkLzL2I36aCdml4zeE35x+G5aPc4bkLsiRiQshU5lWeVpHFAuC8xAcbI6FDcw/8z3q2xtJSQ==

popmotion@^11.0.5:
version "11.0.5"
resolved "https://registry.yarnpkg.com/popmotion/-/popmotion-11.0.5.tgz#8e3e014421a0ffa30ecd722564fd2558954e1f7d"
Expand Down

0 comments on commit a9f9239

Please sign in to comment.