diff --git a/.gitignore b/.gitignore index ae1d0f7..ab742d1 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,5 @@ ehthumbs_vista.db # Recycle Bin used on file shares $RECYCLE.BIN/ + +*.log diff --git a/Cargo.toml b/Cargo.toml index 1ae5eb0..b2f0fad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,8 +48,8 @@ android = [] #glutin = { path = "./3rdparty/glutin/glutin", optional = true } #lua-ffi = { path = "./3rdparty/luajit-rs", optional = true } #winit = { path = "./3rdparty/winit", optional = true, default_features = false, features = ["x11"] } -sdl2 = { path = "./3rdparty/rust-sdl2", optional = true, features = ["unsafe_textures", "bundled", "static-link"] } -sdl2-sys = { path = "./3rdparty/rust-sdl2/sdl2-sys", optional = true, features = ["bundled", "static-link"] } +#sdl2 = { path = "./3rdparty/rust-sdl2", optional = true, features = ["unsafe_textures", "bundled", "static-link"] } +#sdl2-sys = { path = "./3rdparty/rust-sdl2/sdl2-sys", optional = true, features = ["bundled", "static-link"] } byteorder = "1.4" case_insensitive_hashmap = "1.0.0" chrono = { version = "0.4", default-features = false, features = ["clock", "std"] } @@ -69,8 +69,8 @@ num-derive = "0.3" num-traits = "0.2" paste = "1.0" pelite = { version = ">=0.9.2", default-features = false, features = ["std"] } -#sdl2 = { git = "https://github.com/doukutsu-rs/rust-sdl2.git", rev = "95bcf63768abf422527f86da41da910649b9fcc9", optional = true, features = ["unsafe_textures", "bundled", "static-link"] } -#sdl2-sys = { git = "https://github.com/doukutsu-rs/rust-sdl2.git", rev = "95bcf63768abf422527f86da41da910649b9fcc9", optional = true, features = ["bundled", "static-link"] } +sdl2 = { git = "https://github.com/doukutsu-rs/rust-sdl2.git", rev = "95bcf63768abf422527f86da41da910649b9fcc9", optional = true, features = ["unsafe_textures", "bundled", "static-link"] } +sdl2-sys = { git = "https://github.com/doukutsu-rs/rust-sdl2.git", rev = "95bcf63768abf422527f86da41da910649b9fcc9", optional = true, features = ["bundled", "static-link"] } rc-box = "1.2.0" serde = { version = "1", features = ["derive"] } serde_derive = "1"