vault backup: 2025-03-24 22:00:56

This commit is contained in:
Dane Sabo 2025-03-24 22:00:57 -04:00
parent d4fd87672a
commit 9665c0c4f6
118 changed files with 352 additions and 25 deletions

View File

@ -3,7 +3,7 @@ let s:so_save = &g:so | let s:siso_save = &g:siso | setg so=0 siso=0 | setl so=-
let v:this_session=expand("<sfile>:p")
silent only
silent tabonly
cd ~/Documents/Dane\'s\ Vault/3-99\ Research/Rust/guessing_game
cd ~/Documents/Dane\'s\ Vault/3-99\ Research/Rust
if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''
let s:wipebuf = bufnr('%')
endif
@ -13,12 +13,13 @@ if &shortmess =~ 'A'
else
set shortmess=aoO
endif
badd +38 ~/Documents/Dane\'s\ Vault/3-99\ Research/Rust/Chapter\ 2\ -\ Guessing\ Game.md
badd +7 Cargo.toml
badd +62 src/main.rs
badd +22 Chapter\ 2\ -\ Guessing\ Game.md
badd +6 guessing_game/Cargo.toml
badd +35 guessing_game/src/main.rs
badd +1 Chapter\ 3\ -\ Common\ Programming\ Concepts.md
argglobal
%argdel
edit src/main.rs
edit guessing_game/src/main.rs
let s:save_splitbelow = &splitbelow
let s:save_splitright = &splitright
set splitbelow splitright
@ -35,9 +36,10 @@ set winminheight=0
set winheight=1
set winminwidth=0
set winwidth=1
exe 'vert 1resize ' . ((&columns * 95 + 95) / 190)
exe 'vert 2resize ' . ((&columns * 94 + 95) / 190)
exe 'vert 1resize ' . ((&columns * 92 + 93) / 186)
exe 'vert 2resize ' . ((&columns * 93 + 93) / 186)
argglobal
balt guessing_game/Cargo.toml
setlocal fdm=manual
setlocal fde=0
setlocal fmr={{{,}}}
@ -48,19 +50,19 @@ setlocal fdn=20
setlocal fen
silent! normal! zE
let &fdl = &fdl
let s:l = 36 - ((30 * winheight(0) + 31) / 62)
let s:l = 35 - ((34 * winheight(0) + 32) / 64)
if s:l < 1 | let s:l = 1 | endif
keepjumps exe s:l
normal! zt
keepjumps 36
normal! 010|
keepjumps 35
normal! 02|
wincmd w
argglobal
if bufexists(fnamemodify("Cargo.toml", ":p")) | buffer Cargo.toml | else | edit Cargo.toml | endif
if bufexists(fnamemodify("Chapter\ 3\ -\ Common\ Programming\ Concepts.md", ":p")) | buffer Chapter\ 3\ -\ Common\ Programming\ Concepts.md | else | edit Chapter\ 3\ -\ Common\ Programming\ Concepts.md | endif
if &buftype ==# 'terminal'
silent file Cargo.toml
silent file Chapter\ 3\ -\ Common\ Programming\ Concepts.md
endif
balt ~/Documents/Dane\'s\ Vault/3-99\ Research/Rust/Chapter\ 2\ -\ Guessing\ Game.md
balt Chapter\ 2\ -\ Guessing\ Game.md
setlocal fdm=manual
setlocal fde=0
setlocal fmr={{{,}}}
@ -71,15 +73,15 @@ setlocal fdn=20
setlocal fen
silent! normal! zE
let &fdl = &fdl
let s:l = 7 - ((6 * winheight(0) + 31) / 62)
let s:l = 1 - ((0 * winheight(0) + 32) / 64)
if s:l < 1 | let s:l = 1 | endif
keepjumps exe s:l
normal! zt
keepjumps 7
normal! 014|
keepjumps 1
normal! 0
wincmd w
exe 'vert 1resize ' . ((&columns * 95 + 95) / 190)
exe 'vert 2resize ' . ((&columns * 94 + 95) / 190)
exe 'vert 1resize ' . ((&columns * 92 + 93) / 186)
exe 'vert 2resize ' . ((&columns * 93 + 93) / 186)
tabnext 1
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal'
silent exe 'bwipe ' . s:wipebuf

View File

@ -14,13 +14,17 @@ else
set shortmess=aoO
endif
badd +44 custom/mappings.lua
badd +66 custom/language_specific_commands/rust.lua
badd +5 custom/language_specific_commands/markdown.lua
badd +63 ~/.config/nvim/lua/custom/plugins.lua
badd +62 ~/.config/nvim/lua/custom/language_specific_commands/rust.lua
badd +7 custom/language_specific_commands/markdown.lua
badd +43 custom/language_specific_commands/matlab.lua
badd +45 ~/.config/nvim/lua/custom/configs/lspconfig.lua
badd +1 custom/configs/rust-tools.lua
argglobal
%argdel
edit custom/mappings.lua
edit custom/configs/rust-tools.lua
argglobal
balt custom/language_specific_commands/rust.lua
balt ~/.config/nvim/lua/custom/configs/lspconfig.lua
setlocal fdm=manual
setlocal fde=0
setlocal fmr={{{,}}}
@ -31,11 +35,11 @@ setlocal fdn=20
setlocal fen
silent! normal! zE
let &fdl = &fdl
let s:l = 44 - ((43 * winheight(0) + 32) / 64)
let s:l = 1 - ((0 * winheight(0) + 32) / 64)
if s:l < 1 | let s:l = 1 | endif
keepjumps exe s:l
normal! zt
keepjumps 44
keepjumps 1
normal! 0
tabnext 1
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal'

View File

@ -37,3 +37,16 @@ println!("You guessed: {}, {x}", guess);
>> You guessed 3, 6
```
### Casting Types and Switching between ints and floats
Rust is particular about integers and floats. if something is u32, it will
not infer switching to f32 when doing an operation between the two. Instead,
an error is created. To deal with this, you have to use the 'as' command
```rust
let a: u32 = 1
let b: u32 = 2
let mut c: f32 = (a + b as f32)
```
The above code will work just fine.

View File

@ -0,0 +1,61 @@
#Rust
The quick brown fox jumps over the lazy dog. The dog stays blissfully asleep. :)
# What is Chapter 3?
Chapter three is about common programming concepts that I would be familiar with
from other languages. This chapter covers variables, mutability, data types,
functions, comments, and control flow.
# 3.1 Variables and Mutability
## Variables
Rust defines variables kind of like C does:
```rust
let x = 7; // x is 7!
```
but Rust also allows explicit declaration of types when defining a variable:
```rust
let x: u32 = 7; // x is a 32 bit unsigned integer with value 7
let y: f32 = 7.0; // y is a 32 bit float with value of 7.0
```
Variables can be defined in specific scopes that do not escape the inner scope:
```rust
let x: u32 = 4;
{
let mut x = x;
x += 2;
}
println!("{x}")
>> 4 // NOT 6.
```
## Mutability
All variables in Rust are immutable unless specifically mentioned. This is
part of ensuring memory safety--you will not be able to overwrite variables
unless you declare that they can change over time. Here's an example:
```rust
let x: u32 = 2;
x += 2; // Will fail. x is not mutable
let mut y: u32 = 2;
y += 2; // Will work, since y is mutable
```
### Constants
Constants are a special case in Rust. They are immutable variables just like
`let`, but they have a special ability to be defined in the global scope,
where `let` may not be. Here's an example.
```rust
const TWO_PLUS_THREE: u32 = 2 + 3;
fn main() {
println!("{TWO_PLUS_THREE}");
}
>> 5
```

View File

@ -1 +1 @@
{"rustc_fingerprint":416372215023924338,"outputs":{"15611795083382425170":{"success":true,"status":"","code":0,"stdout":"rustc 1.84.1 (e71f9a9a9 2025-01-27)\nbinary: rustc\ncommit-hash: e71f9a9a98b0faf423844bf0ba7438f29dc27d58\ncommit-date: 2025-01-27\nhost: x86_64-unknown-linux-gnu\nrelease: 1.84.1\nLLVM version: 19.1.5\n","stderr":""},"1185988223601034215":{"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":""}},"successes":{}}
{"rustc_fingerprint":9317237865466217508,"outputs":{"1185988223601034215":{"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":""},"15611795083382425170":{"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":{}}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[]","declared_features":"[\"compiler_builtins\", \"core\", \"rustc-dep-of-std\"]","target":11601024444410784892,"profile":10243973527296709326,"path":3778981333030949423,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-ccd6001793aa8495/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[1784309493647515180,"build_script_build",false,2217934406220168831]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-1a1c760145d07deb/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[\"std\"]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":9652763411108993936,"profile":14805356963936596165,"path":9833980088605130240,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-250d31eb8bac595a/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"metadata":12606519392706294666,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[\"std\"]","declared_features":"[\"rustc-dep-of-std\", \"std\", \"wasm_js\"]","target":6950866018572054878,"profile":16356825003409699209,"path":6132678469371935832,"deps":[[1784309493647515180,"build_script_build",false,3222212551313804714],[2452538001284770427,"cfg_if",false,458649287882512670],[8404159604687613413,"libc",false,7836828262574863217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-2db2584ef5ab2a08/dep-lib-getrandom","checksum":false}}],"rustflags":[],"metadata":12606519392706294666,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":5601947868832436996,"path":10602529704205407992,"deps":[[3631563932123159492,"rand",false,17224897870952707751]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-5df59afac6f17e47/dep-bin-guessing_game","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":11983525691607113661,"path":10602529704205407992,"deps":[[3631563932123159492,"rand",false,17224897870952707751]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-92f5b2cb6bb0e442/dep-test-bin-guessing_game","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":11983525691607113661,"path":10602529704205407992,"deps":[[3631563932123159492,"rand",false,17224897870952707751]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-97cb8e22c362a37b/dep-test-bin-guessing_game","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":5601947868832436996,"path":10602529704205407992,"deps":[[3631563932123159492,"rand",false,17224897870952707751]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-a7198cb4aa07732a/dep-bin-guessing_game","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":9652763411108993936,"profile":13232757476167777671,"path":17767480744621784992,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-876e295c1fcee3df/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8404159604687613413,"build_script_build",false,18001545205694973831]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-90d13f3caa134692/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":10680253861624505453,"profile":10243973527296709326,"path":18000914156609250709,"deps":[[8404159604687613413,"build_script_build",false,9488470855212525987]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-d0d1710607014a06/dep-lib-libc","checksum":false}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[\"simd\", \"std\"]","declared_features":"[\"default\", \"no_simd\", \"simd\", \"std\"]","target":8308082377415523989,"profile":10243973527296709326,"path":14982077648089572145,"deps":[[8615015295286527135,"zerocopy",false,4809776374338414230]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-ee09847e19694fa5/dep-lib-ppv_lite86","checksum":false}}],"rustflags":[],"metadata":8948111828707440742,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[\"alloc\", \"default\", \"os_rng\", \"small_rng\", \"std\", \"std_rng\", \"thread_rng\"]","declared_features":"[\"alloc\", \"default\", \"log\", \"nightly\", \"os_rng\", \"serde\", \"simd_support\", \"small_rng\", \"std\", \"std_rng\", \"thread_rng\", \"unbiased\"]","target":13502063182449838433,"profile":10243973527296709326,"path":17919707024649608351,"deps":[[1239436589428396784,"rand_core",false,5522748505602629086],[7171973331330648428,"rand_chacha",false,15224466063009450581],[8615015295286527135,"zerocopy",false,4809776374338414230]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-8edbdc7bffc303e7/dep-lib-rand","checksum":false}}],"rustflags":[],"metadata":16964019146302480911,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[\"std\"]","declared_features":"[\"default\", \"os_rng\", \"serde\", \"std\"]","target":10375715279038366447,"profile":10243973527296709326,"path":3538197779140686152,"deps":[[1239436589428396784,"rand_core",false,5522748505602629086],[5896737205963502644,"ppv_lite86",false,9611217953720048794]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-31e217f045c0c9d4/dep-lib-rand_chacha","checksum":false}}],"rustflags":[],"metadata":2235018391756195449,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[\"os_rng\", \"std\"]","declared_features":"[\"os_rng\", \"serde\", \"std\"]","target":13764384655389069438,"profile":10243973527296709326,"path":17409632386337606746,"deps":[[1784309493647515180,"getrandom",false,5004317356659165933]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-76eebc9d48802d92/dep-lib-rand_core","checksum":false}}],"rustflags":[],"metadata":3275543247315060703,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8615015295286527135,"build_script_build",false,12308336507756546865]],"local":[{"RerunIfChanged":{"output":"debug/build/zerocopy-434217ea36a3527d/output","paths":["build.rs","Cargo.toml"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":9652763411108993936,"profile":13232757476167777671,"path":7764678642260062883,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-449db1b92e4925db/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"metadata":17638429449612405262,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":6294317376553613522,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":13019558235338995725,"profile":10243973527296709326,"path":10404755454540760239,"deps":[[8615015295286527135,"build_script_build",false,2922022426416469804]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-68b0027c26476eb2/dep-lib-zerocopy","checksum":false}}],"rustflags":[],"metadata":17638429449612405262,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
cargo:rerun-if-changed=build.rs

View File

@ -0,0 +1 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/build/getrandom-1a1c760145d07deb/out

View File

@ -0,0 +1,5 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/build/getrandom-250d31eb8bac595a/build_script_build-250d31eb8bac595a: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/build.rs
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/build/getrandom-250d31eb8bac595a/build_script_build-250d31eb8bac595a.d: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/build.rs
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/build.rs:

View File

@ -0,0 +1,5 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/build/libc-876e295c1fcee3df/build_script_build-876e295c1fcee3df: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/build.rs
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/build/libc-876e295c1fcee3df/build_script_build-876e295c1fcee3df.d: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/build.rs
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/build.rs:

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1,21 @@
cargo:rerun-if-changed=build.rs
cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION
cargo:rustc-cfg=freebsd11
cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64
cargo:rustc-cfg=libc_const_extern_fn
cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi)
cargo:rustc-check-cfg=cfg(espidf_time32)
cargo:rustc-check-cfg=cfg(freebsd10)
cargo:rustc-check-cfg=cfg(freebsd11)
cargo:rustc-check-cfg=cfg(freebsd12)
cargo:rustc-check-cfg=cfg(freebsd13)
cargo:rustc-check-cfg=cfg(freebsd14)
cargo:rustc-check-cfg=cfg(freebsd15)
cargo:rustc-check-cfg=cfg(libc_const_extern_fn)
cargo:rustc-check-cfg=cfg(libc_deny_warnings)
cargo:rustc-check-cfg=cfg(libc_thread_local)
cargo:rustc-check-cfg=cfg(libc_ctest)
cargo:rustc-check-cfg=cfg(linux_time_bits64)
cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin"))
cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos"))
cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))

View File

@ -0,0 +1 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/build/libc-90d13f3caa134692/out

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1,18 @@
cargo:rerun-if-changed=build.rs
cargo:rerun-if-changed=Cargo.toml
cargo:rustc-check-cfg=cfg(zerocopy_aarch64_simd_1_59_0)
cargo:rustc-check-cfg=cfg(zerocopy_core_error_1_81_0)
cargo:rustc-check-cfg=cfg(zerocopy_diagnostic_on_unimplemented_1_78_0)
cargo:rustc-check-cfg=cfg(zerocopy_generic_bounds_in_const_fn_1_61_0)
cargo:rustc-check-cfg=cfg(zerocopy_panic_in_const_and_vec_try_reserve_1_57_0)
cargo:rustc-check-cfg=cfg(zerocopy_target_has_atomics_1_60_0)
cargo:rustc-check-cfg=cfg(doc_cfg)
cargo:rustc-check-cfg=cfg(kani)
cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_NIGHTLY_FEATURES_IN_TESTS)
cargo:rustc-check-cfg=cfg(coverage_nightly)
cargo:rustc-cfg=zerocopy_aarch64_simd_1_59_0
cargo:rustc-cfg=zerocopy_core_error_1_81_0
cargo:rustc-cfg=zerocopy_diagnostic_on_unimplemented_1_78_0
cargo:rustc-cfg=zerocopy_generic_bounds_in_const_fn_1_61_0
cargo:rustc-cfg=zerocopy_panic_in_const_and_vec_try_reserve_1_57_0
cargo:rustc-cfg=zerocopy_target_has_atomics_1_60_0

View File

@ -0,0 +1 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/build/zerocopy-434217ea36a3527d/out

View File

@ -0,0 +1,5 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/build/zerocopy-449db1b92e4925db/build_script_build-449db1b92e4925db: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-0.8.24/build.rs
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/build/zerocopy-449db1b92e4925db/build_script_build-449db1b92e4925db.d: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-0.8.24/build.rs
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-0.8.24/build.rs:

View File

@ -0,0 +1,5 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/libcfg_if-ccd6001793aa8495.rmeta: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/cfg_if-ccd6001793aa8495.d: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs:

View File

@ -0,0 +1,13 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/libgetrandom-2db2584ef5ab2a08.rmeta: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/lib.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/error.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/util.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/error_std_impls.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/../README.md /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends/use_file.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends/../util_libc.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends/linux_android_with_fallback.rs
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/getrandom-2db2584ef5ab2a08.d: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/lib.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/error.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/util.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/error_std_impls.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/../README.md /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends/use_file.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends/../util_libc.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends/linux_android_with_fallback.rs
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/lib.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/error.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/util.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/error_std_impls.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/../README.md:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends/use_file.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends/../util_libc.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.3.2/src/backends/linux_android_with_fallback.rs:

View File

@ -0,0 +1,9 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/libguessing_game-97cb8e22c362a37b.rmeta: src/main.rs Cargo.toml
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/guessing_game-97cb8e22c362a37b.d: src/main.rs Cargo.toml
src/main.rs:
Cargo.toml:
# env-dep:CLIPPY_ARGS=--no-deps__CLIPPY_HACKERY__
# env-dep:CLIPPY_CONF_DIR

View File

@ -0,0 +1,9 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/libguessing_game-a7198cb4aa07732a.rmeta: src/main.rs Cargo.toml
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/guessing_game-a7198cb4aa07732a.d: src/main.rs Cargo.toml
src/main.rs:
Cargo.toml:
# env-dep:CLIPPY_ARGS=--no-deps__CLIPPY_HACKERY__
# env-dep:CLIPPY_CONF_DIR

View File

@ -0,0 +1,16 @@
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/liblibc-d0d1710607014a06.rmeta: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/lib.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/macros.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/primitives.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/arch/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/b64/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/arch/generic/mod.rs
/home/danesabo/Documents/Dane's Vault/3-99 Research/Rust/guessing_game/target/debug/deps/libc-d0d1710607014a06.d: /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/lib.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/macros.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/primitives.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/arch/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/b64/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/arch/generic/mod.rs
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/lib.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/macros.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/primitives.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/mod.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/mod.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/mod.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/arch/mod.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/mod.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/b64/mod.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs:
/home/danesabo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.171/src/unix/linux_like/linux/arch/generic/mod.rs:

Some files were not shown because too many files have changed in this diff Show More