From 4fbe619efbffa6fc698ea63b38598da7fa196d0d Mon Sep 17 00:00:00 2001 From: josh Date: Thu, 3 Jul 2014 07:08:55 +0900 Subject: [PATCH] Add a cargo file --- Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..a1fab390 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,16 @@ +[package] + +name = "sdl2_image" +version = "0.0.1" +authors = [ "xsleonard" ] + +[[lib]] + +name = "sdl2_image" +path = "src/sdl2_image/lib.rs" +crate-type = ["dylib"] + +[dependencies.sdl2] + +git = "https://github.com/AngryLawyer/rust-sdl2.git" +