initial commit

This commit is contained in:
VincentKnightTesting 2022-05-05 08:12:56 -05:00
commit 67be0fe1ba
333 changed files with 63597 additions and 0 deletions

127
Cargo.lock generated Normal file
View file

@ -0,0 +1,127 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "cat-box"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24bda0d6fb9dc5a286c9afe6286b1de1f3fe7175310b4b0c2c34174fccafbd19"
dependencies = [
"sdl2",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "game_test"
version = "0.1.0"
dependencies = [
"cat-box",
"rand",
"sdl2",
]
[[package]]
name = "getrandom"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
version = "0.2.125"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b"
[[package]]
name = "ppv-lite86"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
"getrandom",
]
[[package]]
name = "sdl2"
version = "0.35.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7959277b623f1fb9e04aea73686c3ca52f01b2145f8ea16f4ff30d8b7623b1a"
dependencies = [
"bitflags",
"lazy_static",
"libc",
"sdl2-sys",
]
[[package]]
name = "sdl2-sys"
version = "0.35.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3586be2cf6c0a8099a79a12b4084357aa9b3e0b0d7980e3b67aaf7a9d55f9f0"
dependencies = [
"cfg-if",
"libc",
"version-compare",
]
[[package]]
name = "version-compare"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73"
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"

11
Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "game_test"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cat-box = "0.1.6"
sdl2 = "0.35.2"
rand = "0.8.5"

BIN
nosmile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
sans.ttf Normal file

Binary file not shown.

BIN
smile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

49
src/main.rs Normal file
View file

@ -0,0 +1,49 @@
use cat_box::{draw_text, Game, Sprite};
use std::{thread, time};
fn main() {
let game = Game::new("catbox testing", 500, 500);
let mut i = 0u8;
let mut sprite1 = "smile.png";
let mut i2 = 0u8;
game.run(|ctx| {
let mut s = Sprite::new(sprite1, 250, 150).unwrap();
let mut s1 = Sprite::new(sprite1, 100, 150).unwrap();
let mut s2 = Sprite::new(sprite1, 400, 150).unwrap();
let sleep = thread::sleep;
sleep(time::Duration::from_millis(500));
if i == 0 {
i = 255;
i2 = 255u8;
sprite1 = "smile.png";
}else {
i = 0;
i2 = 0u8;
sprite1 = "nosmile.png";
}
ctx.set_background_colour(i as u8,i as u8,i as u8);
draw_text(
ctx,
format!("you are an idiot"),
"times new roman.ttf",
50,
(250, 350),
cat_box::TextMode::Transparent {
colour: (i2,i2,i2),
}
).unwrap();
s.draw(ctx).unwrap();
s1.draw(ctx).unwrap();
s2.draw(ctx).unwrap();
}).unwrap();
}

1
target/.rustc_info.json Normal file
View file

@ -0,0 +1 @@
{"rustc_fingerprint":1991518005844657253,"outputs":{"2797684049618456168":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: `-Csplit-debuginfo` is unstable on this platform\n\n"},"931469667778813386":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/gallant/.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","stderr":""},"17598535894874457435":{"success":true,"status":"","code":0,"stdout":"rustc 1.59.0 (9d1b2106e 2022-02-23)\nbinary: rustc\ncommit-hash: 9d1b2106e23b1abd32fce1f17267604a5102f57a\ncommit-date: 2022-02-23\nhost: x86_64-unknown-linux-gnu\nrelease: 1.59.0\nLLVM version: 13.0.0\n","stderr":""},"5309432699494263626":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n","stderr":""}},"successes":{}}

3
target/CACHEDIR.TAG Normal file
View 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
target/debug/.cargo-lock Normal file
View file

View file

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

View file

@ -0,0 +1 @@
32dc165d83632b72

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"default\"]","target":7112745982619283648,"profile":12637318739757120569,"path":12170547054006938311,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-1693f043aa7c36ab/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"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 @@
9129bba37aae0c83

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"default\"]","target":11441813575244509603,"profile":12637318739757120569,"path":8479361788269503490,"deps":[[2027952989180942924,"sdl2",false,14098326906367777931]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cat-box-6026c94c85a011b6/dep-lib-cat-box"}}],"rustflags":[],"metadata":6740228479860339055,"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 @@
ef85970c27b8458f

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[]","target":10094334937643343087,"profile":12637318739757120569,"path":16394855403311724421,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-0a04e74fc4f21d18/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
fa4170f7ab7c2bdc

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[]","target":8454979698568635467,"profile":9251013656241001069,"path":1684066648322511884,"deps":[[2027952989180942924,"sdl2",false,14098326906367777931],[5910892534286594076,"rand",false,14523161439081665212],[14756909549871627071,"cat_box",false,9443114360445282705]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/game_test-e94e74a96f0400aa/dep-bin-game_test"}}],"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,3 @@
{"message":"unused imports: `SpriteCollection`, `get_keyboard_state`, `get_mouse_state`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":39,"byte_end":55,"line_start":1,"line_end":1,"column_start":40,"column_end":56,"is_primary":true,"text":[{"text":"use cat_box::{draw_text, Game, Sprite, SpriteCollection, get_mouse_state, get_keyboard_state};","highlight_start":40,"highlight_end":56}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/main.rs","byte_start":57,"byte_end":72,"line_start":1,"line_end":1,"column_start":58,"column_end":73,"is_primary":true,"text":[{"text":"use cat_box::{draw_text, Game, Sprite, SpriteCollection, get_mouse_state, get_keyboard_state};","highlight_start":58,"highlight_end":73}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/main.rs","byte_start":74,"byte_end":92,"line_start":1,"line_end":1,"column_start":75,"column_end":93,"is_primary":true,"text":[{"text":"use cat_box::{draw_text, Game, Sprite, SpriteCollection, get_mouse_state, get_keyboard_state};","highlight_start":75,"highlight_end":93}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":37,"byte_end":92,"line_start":1,"line_end":1,"column_start":38,"column_end":93,"is_primary":true,"text":[{"text":"use cat_box::{draw_text, Game, Sprite, SpriteCollection, get_mouse_state, get_keyboard_state};","highlight_start":38,"highlight_end":93}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused imports: `SpriteCollection`, `get_keyboard_state`, `get_mouse_state`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:1:40\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse cat_box::{draw_text, Game, Sprite, SpriteCollection, get_mouse_state, get_keyboard_state};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
{"message":"unused import: `sdl2::keyboard::Scancode`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":99,"byte_end":123,"line_start":2,"line_end":2,"column_start":5,"column_end":29,"is_primary":true,"text":[{"text":"use sdl2::keyboard::Scancode;","highlight_start":5,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":95,"byte_end":124,"line_start":2,"line_end":2,"column_start":1,"column_end":30,"is_primary":true,"text":[{"text":"use sdl2::keyboard::Scancode;","highlight_start":1,"highlight_end":30}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `sdl2::keyboard::Scancode`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:2:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0muse sdl2::keyboard::Scancode;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}
{"message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 2 warnings emitted\u001b[0m\n\n"}

View file

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

View file

@ -0,0 +1 @@
749cb9601243e178

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"std\"]","target":13546511942750895132,"profile":12637318739757120569,"path":2848868357737848961,"deps":[[2452538001284770427,"cfg_if",false,10323860198671222255],[5071438224780403860,"libc",false,16464547433209305390]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-92edb74c54255a85/dep-lib-getrandom"}}],"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 @@
eec32948dc3b88c4

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[]","target":6139664849541123785,"profile":12637318739757120569,"path":2069028011875263433,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lazy_static-02ff0d0fbc57b9b4/dep-lib-lazy_static"}}],"rustflags":[],"metadata":111743654650316589,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
c358ab08bfa86d57

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"","target":0,"profile":0,"path":0,"deps":[[5071438224780403860,"build_script_build",false,14819899531044765641]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-ddc543d44ec3dd51/output","paths":["build.rs"]}}],"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 @@
2e990258a8d27de4

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"default\", \"std\"]","target":15721753382687865320,"profile":12637318739757120569,"path":12601931214422439203,"deps":[[5071438224780403860,"build_script_build",false,6299876992198858947]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-de47093471b727ab/dep-lib-libc"}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
c9bfe6b21adcaacd

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"default\", \"std\"]","target":2709041430195671023,"profile":12637318739757120569,"path":9868279468468103737,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-de576f3ef118e37b/dep-build-script-build-script-build"}}],"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 @@
This file has an mtime of when this was started.

View file

@ -0,0 +1 @@
c22285ea46e1fc2e

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"simd\", \"std\"]","target":731041848731596649,"profile":12637318739757120569,"path":18285836364833475881,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-f422879e062f51ad/dep-lib-ppv-lite86"}}],"rustflags":[],"metadata":14155036307809790115,"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 @@
bc121dc061a28cc9

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"std\", \"std_rng\"]","target":8770996785908029621,"profile":12637318739757120569,"path":9239835490074310541,"deps":[[1974880700686797828,"rand_core",false,12513742845592238829],[5071438224780403860,"libc",false,16464547433209305390],[12017018019769837221,"rand_chacha",false,17164531046581280702]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-a5824744e5338355/dep-lib-rand"}}],"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 @@
be1fa4970baa34ee

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"std\"]","target":10091652985973831551,"profile":12637318739757120569,"path":5728894798552985481,"deps":[[1974880700686797828,"rand_core",false,12513742845592238829],[6749292461404294239,"ppv_lite86",false,3385828714574324418]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-9f5c362d18cbfdd5/dep-lib-rand_chacha"}}],"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 @@
ed7a1c42d1bea9ad

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"alloc\", \"getrandom\", \"std\"]","target":14554634924080965175,"profile":12637318739757120569,"path":6409972178359997063,"deps":[[9767896882406009942,"getrandom",false,8710316900522499188]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-b3b0f8f40cacdd69/dep-lib-rand_core"}}],"rustflags":[],"metadata":3275543247315060703,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
693b212dbed841f6

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"default\", \"image\", \"ttf\"]","target":2709041430195671023,"profile":12637318739757120569,"path":1834896383086156348,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sdl2-1561407daacea9e2/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":3204612833656974723,"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 @@
9001f311ac167d0f

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"","target":0,"profile":0,"path":0,"deps":[[2027952989180942924,"build_script_build",false,17744702318129003369],[17382268157316343340,"build_script_build",false,1595607969756947245]],"local":[{"Precalculated":"0.35.2"}],"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 @@
8b1c620da051a7c3

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"default\", \"image\", \"ttf\"]","target":11537901402046197358,"profile":12637318739757120569,"path":1258407295479766387,"deps":[[2027952989180942924,"build_script_build",false,1116073210949075344],[5071438224780403860,"libc",false,16464547433209305390],[6685014296130524576,"lazy_static",false,14161634845556065262],[14051957667571541382,"bitflags",false,8226778560175987762],[17382268157316343340,"sdl2_sys",false,17963007224652852306]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sdl2-774185ff44ff8d40/dep-lib-sdl2"}}],"rustflags":[],"metadata":3204612833656974723,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"","target":0,"profile":0,"path":0,"deps":[[17382268157316343340,"build_script_build",false,12854095600731032120]],"local":[{"Precalculated":"0.35.2"}],"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 @@
526c3513e66b49f9

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"default\", \"image\", \"ttf\"]","target":4163049214512897365,"profile":12637318739757120569,"path":10998664449434206481,"deps":[[5071438224780403860,"libc",false,16464547433209305390],[17382268157316343340,"build_script_build",false,1595607969756947245]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sdl2-sys-da2a9db1fae2b433/dep-lib-sdl2_sys"}}],"rustflags":[],"metadata":12671436704077421273,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
380a7c4ed8eb62b2

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[\"default\", \"image\", \"ttf\"]","target":13294766831966498538,"profile":12637318739757120569,"path":16104113558099043900,"deps":[[720735588919859894,"version_compare",false,4785973664892435636],[2452538001284770427,"cfg_if",false,10323860198671222255]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sdl2-sys-ebfe185d1c37cd3b/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":12671436704077421273,"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 @@
b4bc49e8b0316b42

View file

@ -0,0 +1 @@
{"rustc":14330414595928666026,"features":"[]","target":17443050515150725052,"profile":12637318739757120569,"path":7915317770023699388,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/version-compare-00af566e309f576b/dep-lib-version-compare"}}],"rustflags":[],"metadata":1144377052308559650,"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,13 @@
cargo:rerun-if-changed=build.rs
cargo:rustc-cfg=freebsd11
cargo:rustc-cfg=libc_priv_mod_use
cargo:rustc-cfg=libc_union
cargo:rustc-cfg=libc_const_size_of
cargo:rustc-cfg=libc_align
cargo:rustc-cfg=libc_int128
cargo:rustc-cfg=libc_core_cvoid
cargo:rustc-cfg=libc_packedN
cargo:rustc-cfg=libc_cfg_target_vendor
cargo:rustc-cfg=libc_non_exhaustive
cargo:rustc-cfg=libc_ptr_addr_of
cargo:rustc-cfg=libc_underscore_const_names

View file

@ -0,0 +1 @@
/home/gallant/Documents/RustProjects/game_test/target/debug/build/libc-ddc543d44ec3dd51/out

Binary file not shown.

View file

@ -0,0 +1,5 @@
/home/gallant/Documents/RustProjects/game_test/target/debug/build/libc-de576f3ef118e37b/build_script_build-de576f3ef118e37b: /home/gallant/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.125/build.rs
/home/gallant/Documents/RustProjects/game_test/target/debug/build/libc-de576f3ef118e37b/build_script_build-de576f3ef118e37b.d: /home/gallant/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.125/build.rs
/home/gallant/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.125/build.rs:

Binary file not shown.

View file

@ -0,0 +1,5 @@
/home/gallant/Documents/RustProjects/game_test/target/debug/build/sdl2-1561407daacea9e2/build_script_build-1561407daacea9e2: /home/gallant/.cargo/registry/src/github.com-1ecc6299db9ec823/sdl2-0.35.2/build.rs
/home/gallant/Documents/RustProjects/game_test/target/debug/build/sdl2-1561407daacea9e2/build_script_build-1561407daacea9e2.d: /home/gallant/.cargo/registry/src/github.com-1ecc6299db9ec823/sdl2-0.35.2/build.rs
/home/gallant/.cargo/registry/src/github.com-1ecc6299db9ec823/sdl2-0.35.2/build.rs:

View file

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

View file

@ -0,0 +1 @@
/home/gallant/Documents/RustProjects/game_test/target/debug/build/sdl2-252d6b93eaa2e96a/out

View file

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

File diff suppressed because it is too large Load diff

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