Remove added piston2d_graphics dependency again (Piston reexports graphics::DrawState)

This commit is contained in:
Denis Golubev 2016-09-03 17:00:53 +02:00
parent cf393d5b7f
commit d77d4ca49c
3 changed files with 1 additions and 4 deletions

1
Cargo.lock generated
View file

@ -2,7 +2,6 @@
name = "rust-2048" name = "rust-2048"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"piston2d-graphics 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)",
"piston2d-opengl_graphics 0.32.0 (registry+https://github.com/rust-lang/crates.io-index)", "piston2d-opengl_graphics 0.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
"piston_window 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", "piston_window 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
"pistoncore-sdl2_window 0.34.0 (registry+https://github.com/rust-lang/crates.io-index)", "pistoncore-sdl2_window 0.34.0 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -12,7 +12,6 @@ path = "src/main.rs"
[dependencies] [dependencies]
rustc-serialize = "0.3" rustc-serialize = "0.3"
rand = "0.3.7" rand = "0.3.7"
piston_window = "0.52.0" piston_window = "0.52.0"
piston2d-graphics = "0.17.0"
pistoncore-sdl2_window = "0.34.0" pistoncore-sdl2_window = "0.34.0"
piston2d-opengl_graphics = "0.32.0" piston2d-opengl_graphics = "0.32.0"

View file

@ -1,7 +1,6 @@
extern crate rustc_serialize; extern crate rustc_serialize;
extern crate rand; extern crate rand;
extern crate piston_window; extern crate piston_window;
extern crate graphics;
extern crate opengl_graphics; extern crate opengl_graphics;
extern crate sdl2_window; extern crate sdl2_window;