diff --git a/city-pop/Cargo.lock b/city-pop/Cargo.lock new file mode 100644 index 0000000000000000000000000000000000000000..88162d0e9b5ddba57d5867125c341561b79792f0 --- /dev/null +++ b/city-pop/Cargo.lock @@ -0,0 +1,33 @@ +[root] +name = "city-pop" +version = "0.1.0" +dependencies = [ + "csv 0.14.3 (registry+https://github.com/rust-lang/crates.io-index)", + "getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "byteorder" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "csv" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "getopts" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc-serialize" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" + diff --git a/city-pop/Cargo.toml b/city-pop/Cargo.toml new file mode 100644 index 0000000000000000000000000000000000000000..3cf1c8af0148734b308b294c763716bfcbd9492e --- /dev/null +++ b/city-pop/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "city-pop" +version = "0.1.0" +authors = ["Anders Nilsson <anders.nilsson@control.lth.se>"] + +[[bin]] +name = "city-pop" + +[dependencies] +csv = "0.*" +rustc-serialize = "0.*" +getopts = "0.*" diff --git a/city-pop/src/main.rs b/city-pop/src/main.rs new file mode 100644 index 0000000000000000000000000000000000000000..e7a11a969c037e00a796aafeff6258501ec15e9a --- /dev/null +++ b/city-pop/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}