mirror of
https://github.com/darkicewolf50/RustBrock.git
synced 2025-06-15 04:54:17 -06:00
start of ch 3
This commit is contained in:
parent
6df0691353
commit
748c30206f
174
data_types.md
Normal file
174
data_types.md
Normal file
@ -0,0 +1,174 @@
|
||||
|
||||
# Data Types
|
||||
|
||||
## Constants
|
||||
|
||||
constants can be delared anywhere, convension to use all caps in const
|
||||
need const keyword, not always eval at compile time
|
||||
variables can only be assigned once (needs mut to assign more than once (need to be same type))
|
||||
|
||||
```rust
|
||||
const SECONDS_PER_HOUR: i32 = 60 * 60;
|
||||
```
|
||||
|
||||
## Variables
|
||||
|
||||
variables are immuatable by default
|
||||
variables can be inferred but sometimes needs explicit typing
|
||||
|
||||
```rust
|
||||
let foo = 5;
|
||||
```
|
||||
need to add mut keyword to enable rewriting, generally avoid unless actually used
|
||||
|
||||
```rust
|
||||
let mut bar = 6;
|
||||
```
|
||||
|
||||
# SHADOWING
|
||||
|
||||
#### Cannot have mutable shadows
|
||||
|
||||
allows for reuse of namespace instead of spaces_str and spaces_num
|
||||
```rust
|
||||
let spaces = " _ _ ";
|
||||
let spaces = spaces.len();
|
||||
// will output 5 instead of " _ _ " beacuse that is how long it is
|
||||
// the shadow of spaces (first) wont be printed until the overshadow of spaces goes out of scope
|
||||
println!("{spaces}"); // output: 5
|
||||
```
|
||||
|
||||
not allowed shadow
|
||||
```rust
|
||||
let mut spaces = " _ _ ";
|
||||
spaces = spaces.len();
|
||||
```
|
||||
cannot change type of variable once declared
|
||||
|
||||
# Primitive Data Types
|
||||
|
||||
## Scalars
|
||||
|
||||
### Integers
|
||||
|
||||
u is for usigned integers
|
||||
i is for signed integers
|
||||
|
||||
number indicated how many bits it takes in memory
|
||||
```rust
|
||||
let z: i8; // takes up 8 bits, can store values from -128 to 127
|
||||
let c: i16; // takes up 16 bits
|
||||
let d: i32; // takes up 32 bits (default for integers)
|
||||
let e: i64; // takes up 64 bits
|
||||
let f: i128; // takes up 128 bits
|
||||
let g: isize; // takes up x bits, depends on the system's architecture/cpu
|
||||
|
||||
let h: u8; // takes up 8 bits, unsigned version (only positive)
|
||||
// can store values from 0 to 255
|
||||
```
|
||||
|
||||
#### Integer Overflow
|
||||
will reset to the lowest value ie i8 129 -> -126
|
||||
```rust
|
||||
let example_over_flow: i8 = 129;
|
||||
```
|
||||
|
||||
behavor only in production mode
|
||||
dev mode will cause a panic and error out/tell you
|
||||
|
||||
### Floats
|
||||
better to use double point due to modern cpus where there is not much difference in speed
|
||||
|
||||
#### Single Point Float
|
||||
takes up 32 bits
|
||||
```rust
|
||||
let a: f32 = 4.0;
|
||||
```
|
||||
|
||||
#### Double Point Float
|
||||
takes up 64 bits
|
||||
```rust
|
||||
let b: f64 = 2.01;
|
||||
```
|
||||
|
||||
#### Integers Represented Differently
|
||||
can represent values in hex, oct, bin or dec
|
||||
can hover with rust-analyzer extension to see value in dec
|
||||
|
||||
##### Dec with Reading Aid
|
||||
value stored 1000
|
||||
_ used to make easier to read
|
||||
```rust
|
||||
let i = 1_000;
|
||||
```
|
||||
|
||||
##### Hexidecimal
|
||||
value stored 255
|
||||
```rust
|
||||
let j = 0xff;
|
||||
```
|
||||
|
||||
##### Octal
|
||||
value stored 63
|
||||
```rust
|
||||
let k = 0o77;
|
||||
```
|
||||
|
||||
##### Binary
|
||||
value stored 13
|
||||
```rust
|
||||
let l = 0b1101;
|
||||
```
|
||||
|
||||
## Numeric Operators / Basic Math
|
||||
Numbers for reference
|
||||
```rust
|
||||
let x: i16 = 8;
|
||||
let y: i16 = 5;
|
||||
```
|
||||
|
||||
### Addition
|
||||
```rust
|
||||
let sum = x + y; // result: 13
|
||||
```
|
||||
|
||||
### Subtraction
|
||||
```rust
|
||||
let difference = x - y; //result: 3
|
||||
```
|
||||
|
||||
### Multiplication
|
||||
```rust
|
||||
let product: i16;
|
||||
product = x * y;
|
||||
```
|
||||
|
||||
### Division
|
||||
```rust
|
||||
let quotent = 45.1 / 54.2;
|
||||
let truncated = x / y; // results in 1 (always rounds down)
|
||||
```
|
||||
|
||||
### Remainder
|
||||
```rust
|
||||
let remainder = x % y;
|
||||
```
|
||||
|
||||
### Booleans
|
||||
must be explicity typed to true or false
|
||||
0 or 1 not allowed even with let var: bool
|
||||
```rust
|
||||
let m = false;
|
||||
let n = true;
|
||||
```
|
||||
|
||||
### Char
|
||||
must use single quotes and not "" otherwise will be inferred as string literal
|
||||
is stored as Unicode Scalar Value allowing for emoji, japanse char and other languages not supported by ASCII
|
||||
takes 4 bytes in size or 32 bits
|
||||
```rust
|
||||
let o = 'a';
|
||||
```
|
||||
|
||||
### Compound Types
|
||||
|
1
guessing_game/target/.rustc_info.json
Normal file
1
guessing_game/target/.rustc_info.json
Normal file
@ -0,0 +1 @@
|
||||
{"rustc_fingerprint":13662911779824945272,"outputs":{"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.83.0 (90b35a623 2024-11-26)\nbinary: rustc\ncommit-hash: 90b35a6239c3d8bdabc530a6a0816f7ff89a0aaf\ncommit-date: 2024-11-26\nhost: x86_64-pc-windows-msvc\nrelease: 1.83.0\nLLVM version: 19.1.1\n","stderr":""},"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\Brock\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\npacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""},"12744816824612481171":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\Brock\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\npacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""}},"successes":{}}
|
3
guessing_game/target/CACHEDIR.TAG
Normal file
3
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
guessing_game/target/debug/.cargo-lock
Normal file
0
guessing_game/target/debug/.cargo-lock
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
3b5937e01f71f3fe
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"[]","declared_features":"[\"default\", \"i128\", \"std\"]","target":16903832911151110546,"profile":10243973527296709326,"path":7147367523180432974,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-db27a0ce4506c654/dep-lib-byteorder","checksum":false}}],"rustflags":[],"metadata":5398730104718078656,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
c42af3f558260824
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"[]","declared_features":"[\"default\", \"i128\", \"std\"]","target":16903832911151110546,"profile":10243973527296709326,"path":2179800858681285256,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\byteorder-ddf1c42854da1c96\\dep-lib-byteorder","checksum":false}}],"rustflags":[],"metadata":5398730104718078656,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
9acc0807249dd074
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"[]","declared_features":"[\"compiler_builtins\", \"core\", \"rustc-dep-of-std\"]","target":11601024444410784892,"profile":10243973527296709326,"path":3851913376969100724,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cfg-if-cf6a53d7866f9279\\dep-lib-cfg_if","checksum":false}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
a753b2d3d0764ce3
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"[]","declared_features":"[\"compiler_builtins\", \"core\", \"rustc-dep-of-std\"]","target":11601024444410784892,"profile":10243973527296709326,"path":479930773276200759,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-f1126d5e99956cbe/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
3d25719e249cc5f8
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":11884987481660704207,"profile":10243973527296709326,"path":9444289190712267838,"deps":[[2452538001284770427,"cfg_if",false,16378596584116605863],[7780729136333935213,"libc",false,2594258904806724359]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-3c65e82f7fb3b718/dep-lib-getrandom","checksum":false}}],"rustflags":[],"metadata":12606519392706294666,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
32ccf557a7702bb9
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":11884987481660704207,"profile":10243973527296709326,"path":2453795859169710245,"deps":[[2452538001284770427,"cfg_if",false,8417400481617857690]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\getrandom-cbc680de5e5b4811\\dep-lib-getrandom","checksum":false}}],"rustflags":[],"metadata":12606519392706294666,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
16eed6795d9b1ac4
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":11983525691607113661,"path":10602529704205407992,"deps":[[5910892534286594076,"rand",false,7012955872571577001]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\guessing_game-36a2833eebff4ced\\dep-test-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.
|
@ -0,0 +1 @@
|
||||
a5d6a0f85de52daa
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":11983525691607113661,"path":10602529704205407992,"deps":[[5910892534286594076,"rand",false,546825574925556997]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-387a956cc306653f/dep-test-bin-guessing_game","checksum":false}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
@ -0,0 +1 @@
|
||||
a1a7e2118574f291
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":5601947868832436996,"path":10602529704205407992,"deps":[[5910892534286594076,"rand",false,7012955872571577001]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\guessing_game-737f79914ce9ee33\\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.
|
@ -0,0 +1 @@
|
||||
12fb00aad50caa7c
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"[]","declared_features":"[]","target":6009296739970659531,"profile":5601947868832436996,"path":10602529704205407992,"deps":[[5910892534286594076,"rand",false,546825574925556997]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-b931835aa85c269b/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.
|
@ -0,0 +1 @@
|
||||
49f1a97f051f9d9b
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"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":12938400762549459792,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-0bf4ed26e03f527c/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
9226b8371944795b
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7780729136333935213,"build_script_build",false,11213152755699544393]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-2fba499436484a1c/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
0713669cbaa80024
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"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":16623825535243732562,"deps":[[7780729136333935213,"build_script_build",false,6591374404733118098]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-e7fcfd59e4079baa/dep-lib-libc","checksum":false}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
205d942a60d8cd63
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"[\"simd\", \"std\"]","declared_features":"[\"default\", \"no_simd\", \"simd\", \"std\"]","target":8308082377415523989,"profile":10243973527296709326,"path":1918861509268063406,"deps":[[8776983334904785487,"zerocopy",false,5097370411754371994]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-00c449b790073d56/dep-lib-ppv_lite86","checksum":false}}],"rustflags":[],"metadata":14155036307809790115,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
ed2be7b8f1b15904
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"[\"simd\", \"std\"]","declared_features":"[\"default\", \"no_simd\", \"simd\", \"std\"]","target":8308082377415523989,"profile":10243973527296709326,"path":2830682404501623613,"deps":[[8776983334904785487,"zerocopy",false,1420426192395865458]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\ppv-lite86-0c4cead71ce8695c\\dep-lib-ppv_lite86","checksum":false}}],"rustflags":[],"metadata":14155036307809790115,"config":2202906307356721367,"compile_kind":0}
|
@ -0,0 +1 @@
|
||||
9b6ffecd8c9f23e6
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":9652763411108993936,"profile":13232757476167777671,"path":14279075653310111333,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-1be6258861b9bf85/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"metadata":7635439851376710101,"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 @@
|
||||
b397a79aec7ef8d3
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":13874121960490935825,"profile":13232757476167777671,"path":13615784090359351214,"deps":[[5621297176310366871,"unicode_ident",false,6748750669290006183],[8251810072013729314,"build_script_build",false,9737591980697298227]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-85ee1178db9d334e/dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0}
|
@ -0,0 +1 @@
|
||||
33a5278150e02287
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8251810072013729314,"build_script_build",false,16583273680008540059]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-8cb02808c8eea528/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
@ -0,0 +1 @@
|
||||
095170086e80326c
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":9652763411108993936,"profile":13232757476167777671,"path":17144487780895175671,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\proc-macro2-a0f94435a9798848\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"metadata":7635439851376710101,"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 @@
|
||||
644c7230573fc17a
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":13874121960490935825,"profile":13232757476167777671,"path":1197828884190381594,"deps":[[5621297176310366871,"unicode_ident",false,17571114831779460055],[8251810072013729314,"build_script_build",false,16946838440036577871]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\proc-macro2-b88ce643bb501b27\\dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"metadata":7635439851376710101,"config":2202906307356721367,"compile_kind":0}
|
@ -0,0 +1 @@
|
||||
4fb250e4c5432feb
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8251810072013729314,"build_script_build",false,7796435115008086281]],"local":[{"RerunIfChanged":{"output":"debug\\build\\proc-macro2-d398f423cad3818d\\output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
85fa53479492db67
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":10650096451693058429,"profile":13232757476167777671,"path":14030949576820004086,"deps":[[8251810072013729314,"proc_macro2",false,8845420786839866468]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\quote-281e80502b8ae93d\\dep-lib-quote","checksum":false}}],"rustflags":[],"metadata":2717943770976187624,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
149cd70934a36a74
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":10650096451693058429,"profile":13232757476167777671,"path":5189201014462657619,"deps":[[8251810072013729314,"proc_macro2",false,15274097690899093427]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-96051cea6d62b4b5/dep-lib-quote","checksum":false}}],"rustflags":[],"metadata":2717943770976187624,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
055d8993f6b69607
|
@ -0,0 +1 @@
|
||||
{"rustc":11594289678289209806,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"std\", \"std_rng\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"log\", \"min_const_gen\", \"nightly\", \"packed_simd\", \"rand_chacha\", \"serde\", \"serde1\", \"simd_support\", \"small_rng\", \"std\", \"std_rng\"]","target":721237385257707553,"profile":10243973527296709326,"path":1601254076908417760,"deps":[[1565494060434293766,"rand_core",false,1424329656110888684],[7780729136333935213,"libc",false,2594258904806724359],[12017018019769837221,"rand_chacha",false,17522994321780352185]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-3718e5f9816390de/dep-lib-rand","checksum":false}}],"rustflags":[],"metadata":16964019146302480911,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
@ -0,0 +1 @@
|
||||
a9521eba35065361
|
@ -0,0 +1 @@
|
||||
{"rustc":8713626761367032038,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"std\", \"std_rng\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"log\", \"min_const_gen\", \"nightly\", \"packed_simd\", \"rand_chacha\", \"serde\", \"serde1\", \"simd_support\", \"small_rng\", \"std\", \"std_rng\"]","target":721237385257707553,"profile":10243973527296709326,"path":13113858365140092758,"deps":[[1565494060434293766,"rand_core",false,9758429258984057358],[12017018019769837221,"rand_chacha",false,10176374881063098080]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\rand-3a200d37ba485961\\dep-lib-rand","checksum":false}}],"rustflags":[],"metadata":16964019146302480911,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
This file has an mtime of when this was started.
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user