diff --git a/guessing_game/.gitignore b/guessing_game/.gitignore deleted file mode 100644 index 0eec03d..0000000 --- a/guessing_game/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -# Generated by Cargo -# will have compiled files and executables -debug/ -target/ - -# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries -# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html -Cargo.lock - -# These are backup files generated by rustfmt -**/*.rs.bk \ No newline at end of file diff --git a/guessing_game/Cargo.lock b/guessing_game/Cargo.lock deleted file mode 100644 index c8cf981..0000000 --- a/guessing_game/Cargo.lock +++ /dev/null @@ -1,84 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -[[package]] -name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - -[[package]] -name = "getrandom" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb" -dependencies = [ - "cfg-if", - "libc", - "wasi", -] - -[[package]] -name = "guessing_game" -version = "0.1.0" -dependencies = [ - "rand", -] - -[[package]] -name = "libc" -version = "0.2.72" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9f8082297d534141b30c8d39e9b1773713ab50fdbe4ff30f750d063b3bfd701" - -[[package]] -name = "ppv-lite86" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "237a5ed80e274dbc66f86bd59c1e25edc039660be53194b5fe0a482e0f2612ea" - -[[package]] -name = "rand" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" -dependencies = [ - "getrandom", - "libc", - "rand_chacha", - "rand_core", - "rand_hc", -] - -[[package]] -name = "rand_chacha" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" -dependencies = [ - "ppv-lite86", - "rand_core", -] - -[[package]] -name = "rand_core" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" -dependencies = [ - "getrandom", -] - -[[package]] -name = "rand_hc" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -dependencies = [ - "rand_core", -] - -[[package]] -name = "wasi" -version = "0.9.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" diff --git a/guessing_game/Cargo.toml b/guessing_game/Cargo.toml deleted file mode 100644 index a80ef9e..0000000 --- a/guessing_game/Cargo.toml +++ /dev/null @@ -1,10 +0,0 @@ -[package] -name = "guessing_game" -version = "0.1.0" -authors = ["Emily J. "] -edition = "2018" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] -rand = "0.7.3" diff --git a/guessing_game/src/main.rs b/guessing_game/src/main.rs deleted file mode 100644 index 17bc99c..0000000 --- a/guessing_game/src/main.rs +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Simple number guessing game I made using the tutorial at - * https://doc.rust-lang.org/stable/book/ch02-00-guessing-game-tutorial.html - */ - -use std::io; -use std::cmp::Ordering; -use rand::Rng; - -fn main() { - // Generates random number between 0 and 100, thread_rng is the generator we're using - let number = rand::thread_rng().gen_range(0, 101); - let mut tries = 1; - - println!("Choose a number between 0 and 100: "); - - loop { - // Defines a mutable variable that returns a string, don't know why constants exist yet - let mut guess = String::new(); - - // the & symbol in front of mut means its a reference, whatever that means lol - io::stdin() - .read_line(&mut guess) - .expect("Failed to read line."); - - // Remove whitespace and convert the input into an unsigned 32 bit integer, using match statement to handle err - let guess: u32 = match guess.trim().parse() { - Ok(num) => num, - Err(_) => { - println!("Invalid input, please type a number!"); - continue; - } - }; - - // Checks whether the guess is higher, lower or equal to the random number - // I added a tries thing myself, that tells you how many turns it took for you to guess the number - match guess.cmp(&number) { - Ordering::Less => { - println!("Higher!"); - tries += 1; - } - Ordering::Greater => { - println!("Lower!"); - tries += 1; - } - Ordering::Equal => { - println!("You win! You took {} tries to guess the number.", tries); - break; - } - } - } -} diff --git a/guessing_game/target/.rustc_info.json b/guessing_game/target/.rustc_info.json deleted file mode 100644 index c314355..0000000 --- a/guessing_game/target/.rustc_info.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc_fingerprint":7448185015360785229,"outputs":{"1164083562126845933":["rustc 1.44.1 (c7087fe00 2020-06-17)\nbinary: rustc\ncommit-hash: c7087fe00d2ba919df1d813c040a5d47e43b0fe7\ncommit-date: 2020-06-17\nhost: x86_64-unknown-linux-gnu\nrelease: 1.44.1\nLLVM version: 9.0\n",""],"4476964694761187371":["___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/emily/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n",""]},"successes":{}} \ No newline at end of file diff --git a/guessing_game/target/rls/.rustc_info.json b/guessing_game/target/rls/.rustc_info.json deleted file mode 100644 index 686b326..0000000 --- a/guessing_game/target/rls/.rustc_info.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc_fingerprint":7448185015360785229,"outputs":{"4476964694761187371":["___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/emily/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n",""],"1164083562126845933":["rustc 1.44.1 (c7087fe00 2020-06-17)\nbinary: rustc\ncommit-hash: c7087fe00d2ba919df1d813c040a5d47e43b0fe7\ncommit-date: 2020-06-17\nhost: x86_64-unknown-linux-gnu\nrelease: 1.44.1\nLLVM version: 9.0\n",""]},"successes":{}} \ No newline at end of file diff --git a/guessing_game/target/rls/debug/.cargo-lock b/guessing_game/target/rls/debug/.cargo-lock deleted file mode 100644 index e69de29..0000000 diff --git a/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/bin-guessing_game-26c3e7d98df99986 b/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/bin-guessing_game-26c3e7d98df99986 deleted file mode 100644 index c5fe1fc..0000000 --- a/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/bin-guessing_game-26c3e7d98df99986 +++ /dev/null @@ -1 +0,0 @@ -a0edadd60b929f4a \ No newline at end of file diff --git a/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/bin-guessing_game-26c3e7d98df99986.json b/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/bin-guessing_game-26c3e7d98df99986.json deleted file mode 100644 index 560eeb1..0000000 --- a/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/bin-guessing_game-26c3e7d98df99986.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":11295616921483704964,"features":"[]","target":1796177550603792182,"profile":14891217944882224483,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-26c3e7d98df99986/dep-bin-guessing_game-26c3e7d98df99986"}}],"rustflags":[],"metadata":6881552442942698694} \ No newline at end of file diff --git a/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/dep-bin-guessing_game-26c3e7d98df99986 b/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/dep-bin-guessing_game-26c3e7d98df99986 deleted file mode 100644 index cdefce3..0000000 Binary files a/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/dep-bin-guessing_game-26c3e7d98df99986 and /dev/null differ diff --git a/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/invoked.timestamp b/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/guessing_game/target/rls/debug/.fingerprint/guessing_game-26c3e7d98df99986/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/dep-test-bin-guessing_game-a7f4c8c042c37a73 b/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/dep-test-bin-guessing_game-a7f4c8c042c37a73 deleted file mode 100644 index cdefce3..0000000 Binary files a/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/dep-test-bin-guessing_game-a7f4c8c042c37a73 and /dev/null differ diff --git a/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/invoked.timestamp b/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/test-bin-guessing_game-a7f4c8c042c37a73 b/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/test-bin-guessing_game-a7f4c8c042c37a73 deleted file mode 100644 index f693204..0000000 --- a/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/test-bin-guessing_game-a7f4c8c042c37a73 +++ /dev/null @@ -1 +0,0 @@ -2ade81678509a6e8 \ No newline at end of file diff --git a/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/test-bin-guessing_game-a7f4c8c042c37a73.json b/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/test-bin-guessing_game-a7f4c8c042c37a73.json deleted file mode 100644 index 19c99d5..0000000 --- a/guessing_game/target/rls/debug/.fingerprint/guessing_game-a7f4c8c042c37a73/test-bin-guessing_game-a7f4c8c042c37a73.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":11295616921483704964,"features":"[]","target":1796177550603792182,"profile":1647870076477133176,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guessing_game-a7f4c8c042c37a73/dep-test-bin-guessing_game-a7f4c8c042c37a73"}}],"rustflags":[],"metadata":6881552442942698694} \ No newline at end of file diff --git a/guessing_game/target/rls/debug/deps/guessing_game-26c3e7d98df99986.d b/guessing_game/target/rls/debug/deps/guessing_game-26c3e7d98df99986.d deleted file mode 100644 index c5f6f77..0000000 --- a/guessing_game/target/rls/debug/deps/guessing_game-26c3e7d98df99986.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/emily/Documents/Projects/rust-practice/guessing_game/target/rls/debug/deps/guessing_game-26c3e7d98df99986.rmeta: src/main.rs - -/home/emily/Documents/Projects/rust-practice/guessing_game/target/rls/debug/deps/guessing_game-26c3e7d98df99986.d: src/main.rs - -src/main.rs: diff --git a/guessing_game/target/rls/debug/deps/guessing_game-a7f4c8c042c37a73.d b/guessing_game/target/rls/debug/deps/guessing_game-a7f4c8c042c37a73.d deleted file mode 100644 index 920b428..0000000 --- a/guessing_game/target/rls/debug/deps/guessing_game-a7f4c8c042c37a73.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/emily/Documents/Projects/rust-practice/guessing_game/target/rls/debug/deps/guessing_game-a7f4c8c042c37a73.rmeta: src/main.rs - -/home/emily/Documents/Projects/rust-practice/guessing_game/target/rls/debug/deps/guessing_game-a7f4c8c042c37a73.d: src/main.rs - -src/main.rs: diff --git a/guessing_game/target/rls/debug/deps/libguessing_game-26c3e7d98df99986.rmeta b/guessing_game/target/rls/debug/deps/libguessing_game-26c3e7d98df99986.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/guessing_game/target/rls/debug/deps/libguessing_game-a7f4c8c042c37a73.rmeta b/guessing_game/target/rls/debug/deps/libguessing_game-a7f4c8c042c37a73.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/hello b/hello deleted file mode 100755 index 5becca1..0000000 Binary files a/hello and /dev/null differ diff --git a/hello.rs b/hello.rs deleted file mode 100644 index e3cb0df..0000000 --- a/hello.rs +++ /dev/null @@ -1,6 +0,0 @@ -// i want to hug ferris - -fn main() { - println!("Hello World!"); - println!("I'm a Rustacean!"); -} \ No newline at end of file diff --git a/hello_cargo/.gitignore b/hello_cargo/.gitignore deleted file mode 100644 index 0039f28..0000000 --- a/hello_cargo/.gitignore +++ /dev/null @@ -1,10 +0,0 @@ -# will have compiled files and executables -debug/ -target/ - -# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries -# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html -Cargo.lock - -# These are backup files generated by rustfmt -**/*.rs.bk \ No newline at end of file diff --git a/hello_cargo/Cargo.lock b/hello_cargo/Cargo.lock deleted file mode 100644 index 008df2f..0000000 --- a/hello_cargo/Cargo.lock +++ /dev/null @@ -1,5 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -[[package]] -name = "hello_cargo" -version = "0.1.0" diff --git a/hello_cargo/Cargo.toml b/hello_cargo/Cargo.toml deleted file mode 100644 index 9098105..0000000 --- a/hello_cargo/Cargo.toml +++ /dev/null @@ -1,9 +0,0 @@ -[package] -name = "hello_cargo" -version = "0.1.0" -authors = ["Emily J. "] -edition = "2018" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] diff --git a/hello_cargo/src/main.rs b/hello_cargo/src/main.rs deleted file mode 100644 index e7a11a9..0000000 --- a/hello_cargo/src/main.rs +++ /dev/null @@ -1,3 +0,0 @@ -fn main() { - println!("Hello, world!"); -} diff --git a/hello_cargo/target/.rustc_info.json b/hello_cargo/target/.rustc_info.json deleted file mode 100644 index c314355..0000000 --- a/hello_cargo/target/.rustc_info.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc_fingerprint":7448185015360785229,"outputs":{"1164083562126845933":["rustc 1.44.1 (c7087fe00 2020-06-17)\nbinary: rustc\ncommit-hash: c7087fe00d2ba919df1d813c040a5d47e43b0fe7\ncommit-date: 2020-06-17\nhost: x86_64-unknown-linux-gnu\nrelease: 1.44.1\nLLVM version: 9.0\n",""],"4476964694761187371":["___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/emily/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n",""]},"successes":{}} \ No newline at end of file diff --git a/hello_cargo/target/debug/.cargo-lock b/hello_cargo/target/debug/.cargo-lock deleted file mode 100644 index e69de29..0000000 diff --git a/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f b/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f deleted file mode 100644 index d0603b3..0000000 --- a/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f +++ /dev/null @@ -1 +0,0 @@ -70d3d8a35ce43bd4 \ No newline at end of file diff --git a/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f.json b/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f.json deleted file mode 100644 index a97fbfd..0000000 --- a/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":11295616921483704964,"features":"[]","target":5720932018286141759,"profile":14891217944882224483,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hello_cargo-1ad55237b5249d1f/dep-bin-hello_cargo-1ad55237b5249d1f"}}],"rustflags":[],"metadata":6881552442942698694} \ No newline at end of file diff --git a/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/dep-bin-hello_cargo-1ad55237b5249d1f b/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/dep-bin-hello_cargo-1ad55237b5249d1f deleted file mode 100644 index cdefce3..0000000 Binary files a/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/dep-bin-hello_cargo-1ad55237b5249d1f and /dev/null differ diff --git a/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/invoked.timestamp b/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/hello_cargo/target/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/bin-hello_cargo-405c571815312809 b/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/bin-hello_cargo-405c571815312809 deleted file mode 100644 index 709e848..0000000 --- a/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/bin-hello_cargo-405c571815312809 +++ /dev/null @@ -1 +0,0 @@ -8df29379252e8f1a \ No newline at end of file diff --git a/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/bin-hello_cargo-405c571815312809.json b/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/bin-hello_cargo-405c571815312809.json deleted file mode 100644 index e1d4576..0000000 --- a/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/bin-hello_cargo-405c571815312809.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":11295616921483704964,"features":"[]","target":5720932018286141759,"profile":14996655781355331481,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hello_cargo-405c571815312809/dep-bin-hello_cargo-405c571815312809"}}],"rustflags":[],"metadata":6881552442942698694} \ No newline at end of file diff --git a/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/dep-bin-hello_cargo-405c571815312809 b/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/dep-bin-hello_cargo-405c571815312809 deleted file mode 100644 index cdefce3..0000000 Binary files a/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/dep-bin-hello_cargo-405c571815312809 and /dev/null differ diff --git a/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/invoked.timestamp b/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/hello_cargo/target/debug/.fingerprint/hello_cargo-405c571815312809/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/hello_cargo/target/debug/deps/hello_cargo-1ad55237b5249d1f.d b/hello_cargo/target/debug/deps/hello_cargo-1ad55237b5249d1f.d deleted file mode 100644 index f55cc37..0000000 --- a/hello_cargo/target/debug/deps/hello_cargo-1ad55237b5249d1f.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/debug/deps/hello_cargo-1ad55237b5249d1f.rmeta: src/main.rs - -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/debug/deps/hello_cargo-1ad55237b5249d1f.d: src/main.rs - -src/main.rs: diff --git a/hello_cargo/target/debug/deps/hello_cargo-405c571815312809 b/hello_cargo/target/debug/deps/hello_cargo-405c571815312809 deleted file mode 100755 index f21c5b4..0000000 Binary files a/hello_cargo/target/debug/deps/hello_cargo-405c571815312809 and /dev/null differ diff --git a/hello_cargo/target/debug/deps/hello_cargo-405c571815312809.d b/hello_cargo/target/debug/deps/hello_cargo-405c571815312809.d deleted file mode 100644 index eafcf20..0000000 --- a/hello_cargo/target/debug/deps/hello_cargo-405c571815312809.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/debug/deps/hello_cargo-405c571815312809: src/main.rs - -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/debug/deps/hello_cargo-405c571815312809.d: src/main.rs - -src/main.rs: diff --git a/hello_cargo/target/debug/deps/libhello_cargo-1ad55237b5249d1f.rmeta b/hello_cargo/target/debug/deps/libhello_cargo-1ad55237b5249d1f.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/hello_cargo/target/debug/hello_cargo b/hello_cargo/target/debug/hello_cargo deleted file mode 100755 index f21c5b4..0000000 Binary files a/hello_cargo/target/debug/hello_cargo and /dev/null differ diff --git a/hello_cargo/target/debug/hello_cargo.d b/hello_cargo/target/debug/hello_cargo.d deleted file mode 100644 index 141cfa5..0000000 --- a/hello_cargo/target/debug/hello_cargo.d +++ /dev/null @@ -1 +0,0 @@ -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/debug/hello_cargo: /home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs diff --git a/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc-1zs775tdmbmtv/dep-graph.bin b/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc-1zs775tdmbmtv/dep-graph.bin deleted file mode 100644 index ad7f7ab..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc-1zs775tdmbmtv/dep-graph.bin and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc-1zs775tdmbmtv/query-cache.bin b/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc-1zs775tdmbmtv/query-cache.bin deleted file mode 100644 index fb3c151..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc-1zs775tdmbmtv/query-cache.bin and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc-1zs775tdmbmtv/work-products.bin b/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc-1zs775tdmbmtv/work-products.bin deleted file mode 100644 index 3f5bf45..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc-1zs775tdmbmtv/work-products.bin and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc.lock b/hello_cargo/target/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2dkswlnw-uss4rc.lock deleted file mode 100755 index e69de29..0000000 diff --git a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/37lk7f9ibuvup7x3.o b/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/37lk7f9ibuvup7x3.o deleted file mode 100644 index f326e2e..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/37lk7f9ibuvup7x3.o and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/3gdh5mxluzmh8fme.o b/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/3gdh5mxluzmh8fme.o deleted file mode 100644 index 3e76829..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/3gdh5mxluzmh8fme.o and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/3p8ohf8s032vbzw3.o b/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/3p8ohf8s032vbzw3.o deleted file mode 100644 index 6acb1c3..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/3p8ohf8s032vbzw3.o and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/3urnl1eiq7xe24h8.o b/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/3urnl1eiq7xe24h8.o deleted file mode 100644 index 09f0f9d..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/3urnl1eiq7xe24h8.o and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/4ba2rv1uzei9yezk.o b/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/4ba2rv1uzei9yezk.o deleted file mode 100644 index a7f8d83..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/4ba2rv1uzei9yezk.o and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/dep-graph.bin b/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/dep-graph.bin deleted file mode 100644 index 6b707ab..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/dep-graph.bin and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/query-cache.bin b/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/query-cache.bin deleted file mode 100644 index d182c47..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/query-cache.bin and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/utbttgr83vt9epv.o b/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/utbttgr83vt9epv.o deleted file mode 100644 index 8b2b3c3..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/utbttgr83vt9epv.o and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/work-products.bin b/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/work-products.bin deleted file mode 100644 index 5f5e26f..0000000 Binary files a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda-3087wbvsksl8d/work-products.bin and /dev/null differ diff --git a/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda.lock b/hello_cargo/target/debug/incremental/hello_cargo-3i1au7r5srx7k/s-fp2dg6kug5-yaezda.lock deleted file mode 100755 index e69de29..0000000 diff --git a/hello_cargo/target/release/.cargo-lock b/hello_cargo/target/release/.cargo-lock deleted file mode 100644 index e69de29..0000000 diff --git a/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/bin-hello_cargo-f0cba58515a29096 b/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/bin-hello_cargo-f0cba58515a29096 deleted file mode 100644 index 9dccf88..0000000 --- a/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/bin-hello_cargo-f0cba58515a29096 +++ /dev/null @@ -1 +0,0 @@ -e3f7132a4896ce28 \ No newline at end of file diff --git a/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/bin-hello_cargo-f0cba58515a29096.json b/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/bin-hello_cargo-f0cba58515a29096.json deleted file mode 100644 index f8ab40c..0000000 --- a/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/bin-hello_cargo-f0cba58515a29096.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":11295616921483704964,"features":"[]","target":5720932018286141759,"profile":2574335274271406459,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/hello_cargo-f0cba58515a29096/dep-bin-hello_cargo-f0cba58515a29096"}}],"rustflags":[],"metadata":6881552442942698694} \ No newline at end of file diff --git a/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/dep-bin-hello_cargo-f0cba58515a29096 b/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/dep-bin-hello_cargo-f0cba58515a29096 deleted file mode 100644 index cdefce3..0000000 Binary files a/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/dep-bin-hello_cargo-f0cba58515a29096 and /dev/null differ diff --git a/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/invoked.timestamp b/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/hello_cargo/target/release/.fingerprint/hello_cargo-f0cba58515a29096/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/hello_cargo/target/release/deps/hello_cargo-f0cba58515a29096 b/hello_cargo/target/release/deps/hello_cargo-f0cba58515a29096 deleted file mode 100755 index ab0b9a5..0000000 Binary files a/hello_cargo/target/release/deps/hello_cargo-f0cba58515a29096 and /dev/null differ diff --git a/hello_cargo/target/release/deps/hello_cargo-f0cba58515a29096.d b/hello_cargo/target/release/deps/hello_cargo-f0cba58515a29096.d deleted file mode 100644 index fe2a0d2..0000000 --- a/hello_cargo/target/release/deps/hello_cargo-f0cba58515a29096.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/release/deps/hello_cargo-f0cba58515a29096: src/main.rs - -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/release/deps/hello_cargo-f0cba58515a29096.d: src/main.rs - -src/main.rs: diff --git a/hello_cargo/target/release/hello_cargo b/hello_cargo/target/release/hello_cargo deleted file mode 100755 index ab0b9a5..0000000 Binary files a/hello_cargo/target/release/hello_cargo and /dev/null differ diff --git a/hello_cargo/target/release/hello_cargo.d b/hello_cargo/target/release/hello_cargo.d deleted file mode 100644 index 487e455..0000000 --- a/hello_cargo/target/release/hello_cargo.d +++ /dev/null @@ -1 +0,0 @@ -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/release/hello_cargo: /home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs diff --git a/hello_cargo/target/rls/.rustc_info.json b/hello_cargo/target/rls/.rustc_info.json deleted file mode 100644 index 686b326..0000000 --- a/hello_cargo/target/rls/.rustc_info.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc_fingerprint":7448185015360785229,"outputs":{"4476964694761187371":["___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/emily/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n",""],"1164083562126845933":["rustc 1.44.1 (c7087fe00 2020-06-17)\nbinary: rustc\ncommit-hash: c7087fe00d2ba919df1d813c040a5d47e43b0fe7\ncommit-date: 2020-06-17\nhost: x86_64-unknown-linux-gnu\nrelease: 1.44.1\nLLVM version: 9.0\n",""]},"successes":{}} \ No newline at end of file diff --git a/hello_cargo/target/rls/debug/.cargo-lock b/hello_cargo/target/rls/debug/.cargo-lock deleted file mode 100644 index e69de29..0000000 diff --git a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f b/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f deleted file mode 100644 index d0603b3..0000000 --- a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f +++ /dev/null @@ -1 +0,0 @@ -70d3d8a35ce43bd4 \ No newline at end of file diff --git a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f.json b/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f.json deleted file mode 100644 index a97fbfd..0000000 --- a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/bin-hello_cargo-1ad55237b5249d1f.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":11295616921483704964,"features":"[]","target":5720932018286141759,"profile":14891217944882224483,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hello_cargo-1ad55237b5249d1f/dep-bin-hello_cargo-1ad55237b5249d1f"}}],"rustflags":[],"metadata":6881552442942698694} \ No newline at end of file diff --git a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/dep-bin-hello_cargo-1ad55237b5249d1f b/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/dep-bin-hello_cargo-1ad55237b5249d1f deleted file mode 100644 index cdefce3..0000000 Binary files a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/dep-bin-hello_cargo-1ad55237b5249d1f and /dev/null differ diff --git a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/invoked.timestamp b/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-1ad55237b5249d1f/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/dep-test-bin-hello_cargo-b4da91f62f80fb2e b/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/dep-test-bin-hello_cargo-b4da91f62f80fb2e deleted file mode 100644 index cdefce3..0000000 Binary files a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/dep-test-bin-hello_cargo-b4da91f62f80fb2e and /dev/null differ diff --git a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/invoked.timestamp b/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/invoked.timestamp deleted file mode 100644 index e00328d..0000000 --- a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/invoked.timestamp +++ /dev/null @@ -1 +0,0 @@ -This file has an mtime of when this was started. \ No newline at end of file diff --git a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/test-bin-hello_cargo-b4da91f62f80fb2e b/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/test-bin-hello_cargo-b4da91f62f80fb2e deleted file mode 100644 index 2b9e433..0000000 --- a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/test-bin-hello_cargo-b4da91f62f80fb2e +++ /dev/null @@ -1 +0,0 @@ -1b95a1671e6160db \ No newline at end of file diff --git a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/test-bin-hello_cargo-b4da91f62f80fb2e.json b/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/test-bin-hello_cargo-b4da91f62f80fb2e.json deleted file mode 100644 index 41f0d86..0000000 --- a/hello_cargo/target/rls/debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/test-bin-hello_cargo-b4da91f62f80fb2e.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":11295616921483704964,"features":"[]","target":5720932018286141759,"profile":1647870076477133176,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hello_cargo-b4da91f62f80fb2e/dep-test-bin-hello_cargo-b4da91f62f80fb2e"}}],"rustflags":[],"metadata":6881552442942698694} \ No newline at end of file diff --git a/hello_cargo/target/rls/debug/deps/hello_cargo-1ad55237b5249d1f.d b/hello_cargo/target/rls/debug/deps/hello_cargo-1ad55237b5249d1f.d deleted file mode 100644 index 8aa3ca8..0000000 --- a/hello_cargo/target/rls/debug/deps/hello_cargo-1ad55237b5249d1f.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/rls/debug/deps/hello_cargo-1ad55237b5249d1f.rmeta: src/main.rs - -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/rls/debug/deps/hello_cargo-1ad55237b5249d1f.d: src/main.rs - -src/main.rs: diff --git a/hello_cargo/target/rls/debug/deps/hello_cargo-b4da91f62f80fb2e.d b/hello_cargo/target/rls/debug/deps/hello_cargo-b4da91f62f80fb2e.d deleted file mode 100644 index 758affb..0000000 --- a/hello_cargo/target/rls/debug/deps/hello_cargo-b4da91f62f80fb2e.d +++ /dev/null @@ -1,5 +0,0 @@ -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/rls/debug/deps/hello_cargo-b4da91f62f80fb2e.rmeta: src/main.rs - -/home/emily/Documents/Projects/rust-practice/hello_cargo/target/rls/debug/deps/hello_cargo-b4da91f62f80fb2e.d: src/main.rs - -src/main.rs: diff --git a/hello_cargo/target/rls/debug/deps/libhello_cargo-1ad55237b5249d1f.rmeta b/hello_cargo/target/rls/debug/deps/libhello_cargo-1ad55237b5249d1f.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/hello_cargo/target/rls/debug/deps/libhello_cargo-b4da91f62f80fb2e.rmeta b/hello_cargo/target/rls/debug/deps/libhello_cargo-b4da91f62f80fb2e.rmeta deleted file mode 100644 index e69de29..0000000 diff --git a/hello_cargo/target/rls/debug/deps/save-analysis/hello_cargo-1ad55237b5249d1f.json b/hello_cargo/target/rls/debug/deps/save-analysis/hello_cargo-1ad55237b5249d1f.json deleted file mode 100644 index ecb32d4..0000000 --- a/hello_cargo/target/rls/debug/deps/save-analysis/hello_cargo-1ad55237b5249d1f.json +++ /dev/null @@ -1 +0,0 @@ -{"config":{"output_file":null,"full_docs":false,"pub_only":false,"reachable_only":false,"distro_crate":false,"signatures":false,"borrow_data":false},"version":"0.19.0","compilation":{"directory":"/home/emily/Documents/Projects/rust-practice/hello_cargo","program":"/home/emily/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rls","arguments":[],"output":"/home/emily/Documents/Projects/rust-practice/hello_cargo/target/rls/debug/deps/libhello_cargo-1ad55237b5249d1f.rmeta"},"prelude":{"crate_id":{"name":"hello_cargo","disambiguator":[11820019386030937771,3583950356114279377]},"crate_root":"src","external_crates":[{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":1,"id":{"name":"std","disambiguator":[12673765241971086519,1979875191208036248]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":2,"id":{"name":"core","disambiguator":[16221439354469382097,15565837348772828253]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":3,"id":{"name":"compiler_builtins","disambiguator":[15613252303691562375,4556165055238676072]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":4,"id":{"name":"rustc_std_workspace_core","disambiguator":[12269617896898487533,65142111397584226]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":5,"id":{"name":"alloc","disambiguator":[15862783141653200230,4773813417861420487]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":6,"id":{"name":"libc","disambiguator":[501305773035659233,3889300012469539238]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":7,"id":{"name":"unwind","disambiguator":[9126002216567348836,15610270334556716503]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":8,"id":{"name":"cfg_if","disambiguator":[9479301707518706798,13352731276321566042]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":9,"id":{"name":"backtrace","disambiguator":[15203654865662241151,17897348793673631766]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":10,"id":{"name":"rustc_demangle","disambiguator":[10290502124864695413,7672610073830174493]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":11,"id":{"name":"backtrace_sys","disambiguator":[14838544226648722576,13006716085524361330]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":12,"id":{"name":"hashbrown","disambiguator":[9246889555580827340,16878203682218964580]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":13,"id":{"name":"rustc_std_workspace_alloc","disambiguator":[8284748314555817558,4769950866534510046]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":14,"id":{"name":"panic_unwind","disambiguator":[14671874173783541769,17969261176539820175]}}],"span":{"file_name":"src/main.rs","byte_start":0,"byte_end":44,"line_start":1,"line_end":3,"column_start":1,"column_end":2}},"imports":[],"defs":[{"kind":"Mod","id":{"krate":0,"index":0},"span":{"file_name":"src/main.rs","byte_start":0,"byte_end":44,"line_start":1,"line_end":3,"column_start":1,"column_end":2},"name":"","qualname":"::","value":"src/main.rs","parent":null,"children":[{"krate":0,"index":1},{"krate":0,"index":2},{"krate":0,"index":3}],"decl_id":null,"docs":"","sig":null,"attributes":[]},{"kind":"Function","id":{"krate":0,"index":3},"span":{"file_name":"src/main.rs","byte_start":3,"byte_end":7,"line_start":1,"line_end":1,"column_start":4,"column_end":8},"name":"main","qualname":"::main","value":"fn () -> ()","parent":null,"children":[],"decl_id":null,"docs":"","sig":null,"attributes":[]}],"impls":[],"refs":[],"macro_refs":[],"relations":[]} \ No newline at end of file diff --git a/hello_cargo/target/rls/debug/deps/save-analysis/hello_cargo-b4da91f62f80fb2e.json b/hello_cargo/target/rls/debug/deps/save-analysis/hello_cargo-b4da91f62f80fb2e.json deleted file mode 100644 index d311a28..0000000 --- a/hello_cargo/target/rls/debug/deps/save-analysis/hello_cargo-b4da91f62f80fb2e.json +++ /dev/null @@ -1 +0,0 @@ -{"config":{"output_file":null,"full_docs":false,"pub_only":false,"reachable_only":false,"distro_crate":false,"signatures":false,"borrow_data":false},"version":"0.19.0","compilation":{"directory":"/home/emily/Documents/Projects/rust-practice/hello_cargo","program":"/home/emily/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rls","arguments":[],"output":"/home/emily/Documents/Projects/rust-practice/hello_cargo/target/rls/debug/deps/libhello_cargo-b4da91f62f80fb2e.rmeta"},"prelude":{"crate_id":{"name":"hello_cargo","disambiguator":[7812510024814127942,2727530441201834687]},"crate_root":"src","external_crates":[{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":1,"id":{"name":"std","disambiguator":[12673765241971086519,1979875191208036248]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":2,"id":{"name":"core","disambiguator":[16221439354469382097,15565837348772828253]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":3,"id":{"name":"compiler_builtins","disambiguator":[15613252303691562375,4556165055238676072]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":4,"id":{"name":"rustc_std_workspace_core","disambiguator":[12269617896898487533,65142111397584226]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":5,"id":{"name":"alloc","disambiguator":[15862783141653200230,4773813417861420487]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":6,"id":{"name":"libc","disambiguator":[501305773035659233,3889300012469539238]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":7,"id":{"name":"unwind","disambiguator":[9126002216567348836,15610270334556716503]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":8,"id":{"name":"cfg_if","disambiguator":[9479301707518706798,13352731276321566042]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":9,"id":{"name":"backtrace","disambiguator":[15203654865662241151,17897348793673631766]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":10,"id":{"name":"rustc_demangle","disambiguator":[10290502124864695413,7672610073830174493]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":11,"id":{"name":"backtrace_sys","disambiguator":[14838544226648722576,13006716085524361330]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":12,"id":{"name":"hashbrown","disambiguator":[9246889555580827340,16878203682218964580]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":13,"id":{"name":"rustc_std_workspace_alloc","disambiguator":[8284748314555817558,4769950866534510046]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":14,"id":{"name":"panic_unwind","disambiguator":[14671874173783541769,17969261176539820175]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":15,"id":{"name":"test","disambiguator":[9313540940719435894,6433276621802240045]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":16,"id":{"name":"getopts","disambiguator":[15940589346932726858,6348868037951525207]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":17,"id":{"name":"rustc_std_workspace_std","disambiguator":[14241386022437774139,9978606192486280148]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":18,"id":{"name":"unicode_width","disambiguator":[3855268850323942265,13067211433436981736]}},{"file_name":"/home/emily/Documents/Projects/rust-practice/hello_cargo/src/main.rs","num":19,"id":{"name":"term","disambiguator":[9878895306989019843,2899800260231466794]}}],"span":{"file_name":"src/main.rs","byte_start":0,"byte_end":44,"line_start":1,"line_end":3,"column_start":1,"column_end":2}},"imports":[],"defs":[{"kind":"Mod","id":{"krate":0,"index":0},"span":{"file_name":"src/main.rs","byte_start":0,"byte_end":44,"line_start":1,"line_end":3,"column_start":1,"column_end":2},"name":"","qualname":"::","value":"src/main.rs","parent":null,"children":[{"krate":0,"index":1},{"krate":0,"index":2},{"krate":0,"index":3},{"krate":0,"index":4}],"decl_id":null,"docs":"","sig":null,"attributes":[]},{"kind":"Function","id":{"krate":0,"index":3},"span":{"file_name":"src/main.rs","byte_start":3,"byte_end":7,"line_start":1,"line_end":1,"column_start":4,"column_end":8},"name":"main","qualname":"::main","value":"fn () -> ()","parent":null,"children":[],"decl_id":null,"docs":"","sig":null,"attributes":[{"value":"allow(dead_code)","span":{"file_name":"src/main.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1}}]}],"impls":[],"refs":[],"macro_refs":[],"relations":[]} \ No newline at end of file diff --git a/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro-sp5ohamw7wtq/dep-graph.bin b/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro-sp5ohamw7wtq/dep-graph.bin deleted file mode 100644 index 87de829..0000000 Binary files a/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro-sp5ohamw7wtq/dep-graph.bin and /dev/null differ diff --git a/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro-sp5ohamw7wtq/query-cache.bin b/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro-sp5ohamw7wtq/query-cache.bin deleted file mode 100644 index a9066c7..0000000 Binary files a/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro-sp5ohamw7wtq/query-cache.bin and /dev/null differ diff --git a/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro-sp5ohamw7wtq/work-products.bin b/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro-sp5ohamw7wtq/work-products.bin deleted file mode 100644 index 3f5bf45..0000000 Binary files a/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro-sp5ohamw7wtq/work-products.bin and /dev/null differ diff --git a/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro.lock b/hello_cargo/target/rls/debug/incremental/hello_cargo-1nct3o6fz1zye/s-fp2derf4fw-xzp6ro.lock deleted file mode 100755 index e69de29..0000000 diff --git a/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk-38hsa5xsko2a3/dep-graph.bin b/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk-38hsa5xsko2a3/dep-graph.bin deleted file mode 100644 index c30f747..0000000 Binary files a/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk-38hsa5xsko2a3/dep-graph.bin and /dev/null differ diff --git a/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk-38hsa5xsko2a3/query-cache.bin b/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk-38hsa5xsko2a3/query-cache.bin deleted file mode 100644 index 36f70f0..0000000 Binary files a/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk-38hsa5xsko2a3/query-cache.bin and /dev/null differ diff --git a/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk-38hsa5xsko2a3/work-products.bin b/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk-38hsa5xsko2a3/work-products.bin deleted file mode 100644 index 3f5bf45..0000000 Binary files a/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk-38hsa5xsko2a3/work-products.bin and /dev/null differ diff --git a/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk.lock b/hello_cargo/target/rls/debug/incremental/hello_cargo-2hswn6fcq3bfv/s-fp2deri7p7-vgg1fk.lock deleted file mode 100755 index e69de29..0000000