vault backup: 2025-03-23 13:22:08
This commit is contained in:
parent
7d2dd5166d
commit
40712333ae
@ -1,23 +1,14 @@
|
||||
# Table of Contents for Rust
|
||||
|
||||
## Subdirectories
|
||||
- [[guessing_game/guessing_game - README]]
|
||||
- [[hello_world/hello_world - README]]
|
||||
|
||||
## Files
|
||||
- [[Chapter 1 - Introduction.md]]
|
||||
- [[Chapter 2 - Guessing Game.md]]
|
||||
- [[Learning Plan.md]]
|
||||
|
||||
## Summary
|
||||
Here's a concise description of what's inside this folder:
|
||||
|
||||
**Rust Notes**
|
||||
|
||||
This folder contains notes on Rust programming, including learning materials and reference information.
|
||||
|
||||
* **Table of Contents**: Listed in [Item 1](#item1), this outline shows the structure of the contents in this folder.
|
||||
* **Chapter 1 - Introduction**: Found in [./3-99 Research/Rust/Chapter 1 - Introduction.md](./3-99 Research/Rust/Chapter 1 - Introduction.md), this chapter covers the basics of Rust programming, including compilation and running a simple "Hello, world!" program. It also introduces Cargo, Rust's dependency manager and project creator.
|
||||
* **Learning Plan**: Listed in [Item 2](#item2), this is a table of contents for the Rust learning plan, outlining topics such as error handling, generic types, and patterns.
|
||||
|
||||
This folder serves as a resource for those looking to learn Rust programming.
|
||||
|
||||
Generated by llama3.2:latest
|
||||
|
||||
7
3-99 Research/Rust/guessing_game/Cargo.lock
generated
Normal file
7
3-99 Research/Rust/guessing_game/Cargo.lock
generated
Normal file
@ -0,0 +1,7 @@
|
||||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 4
|
||||
|
||||
[[package]]
|
||||
name = "guessing_game"
|
||||
version = "0.1.0"
|
||||
1
3-99 Research/Rust/guessing_game/target/.rustc_info.json
Normal file
1
3-99 Research/Rust/guessing_game/target/.rustc_info.json
Normal file
@ -0,0 +1 @@
|
||||
{"rustc_fingerprint":7791207531633935174,"outputs":{"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/danesabo/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.84.0 (9fc6b4312 2025-01-07)\nbinary: rustc\ncommit-hash: 9fc6b43126469e3858e2fe86cafb4f0fd5068869\ncommit-date: 2025-01-07\nhost: x86_64-unknown-linux-gnu\nrelease: 1.84.0\nLLVM version: 19.1.5\n","stderr":""}},"successes":{}}
|
||||
3
3-99 Research/Rust/guessing_game/target/CACHEDIR.TAG
Normal file
3
3-99 Research/Rust/guessing_game/target/CACHEDIR.TAG
Normal file
@ -0,0 +1,3 @@
|
||||
Signature: 8a477f597d28d172789f06886806bc55
|
||||
# This file is a cache directory tag created by cargo.
|
||||
# For information about cache directory tags see https://bford.info/cachedir/
|
||||
@ -0,0 +1 @@
|
||||
4c28a69b6f9d5d57
|
||||
@ -0,0 +1 @@
|
||||
{"rustc":6294317376553613522,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":11597332650809196192,"path":10602529704205407992,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-46bb552ecb62f83c/dep-bin-guessing_game","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
||||
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
@ -0,0 +1 @@
|
||||
8e554e4331f9490e
|
||||
@ -0,0 +1 @@
|
||||
{"rustc":6294317376553613522,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":11983525691607113661,"path":10602529704205407992,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-a6bda42ff3e643f1/dep-test-bin-guessing_game","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
||||
@ -0,0 +1 @@
|
||||
bcfbb1ad8235ae65
|
||||
@ -0,0 +1 @@
|
||||
{"rustc":6294317376553613522,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":5601947868832436996,"path":10602529704205407992,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-e5d885f09ac9a5e1/dep-bin-guessing_game","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
||||
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
||||
Binary file not shown.
@ -0,0 +1,5 @@
|
||||
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/guessing_game-46bb552ecb62f83c: src/main.rs
|
||||
|
||||
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/guessing_game-46bb552ecb62f83c.d: src/main.rs
|
||||
|
||||
src/main.rs:
|
||||
@ -0,0 +1,9 @@
|
||||
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/libguessing_game-a6bda42ff3e643f1.rmeta: src/main.rs Cargo.toml
|
||||
|
||||
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/guessing_game-a6bda42ff3e643f1.d: src/main.rs Cargo.toml
|
||||
|
||||
src/main.rs:
|
||||
Cargo.toml:
|
||||
|
||||
# env-dep:CLIPPY_ARGS=--no-deps__CLIPPY_HACKERY__
|
||||
# env-dep:CLIPPY_CONF_DIR
|
||||
@ -0,0 +1,9 @@
|
||||
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/libguessing_game-e5d885f09ac9a5e1.rmeta: src/main.rs Cargo.toml
|
||||
|
||||
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/guessing_game-e5d885f09ac9a5e1.d: src/main.rs Cargo.toml
|
||||
|
||||
src/main.rs:
|
||||
Cargo.toml:
|
||||
|
||||
# env-dep:CLIPPY_ARGS=--no-deps__CLIPPY_HACKERY__
|
||||
# env-dep:CLIPPY_CONF_DIR
|
||||
BIN
3-99 Research/Rust/guessing_game/target/debug/guessing_game
Executable file
BIN
3-99 Research/Rust/guessing_game/target/debug/guessing_game
Executable file
Binary file not shown.
@ -0,0 +1 @@
|
||||
/home/danesabo/Documents/Dane's\ Vault/3-99\ Research/Rust/guessing_game/target/debug/guessing_game: /home/danesabo/Documents/Dane's\ Vault/3-99\ Research/Rust/guessing_game/src/main.rs
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -29,7 +29,7 @@ base_dir="."
|
||||
dirs=()
|
||||
while IFS= read -r -d '' dir; do
|
||||
# Skip directories that are hidden or inside a hidden parent (like .git)
|
||||
if [[ "$(basename "$dir")" == .* ]] || [[ "$dir" == *"/.git"* ]] || [[ "$dir" == *"/.obsidian"* ]]; then
|
||||
if [[ "$(basename "$dir")" == .* ]] || [[ "$dir" == *"/.git"* ]] || [[ "$dir" == *"/.obsidian"* ]] || [[ "$dir" == *"/src"* ]]; then
|
||||
continue
|
||||
fi
|
||||
dirs+=( "$dir" )
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user