From 12fab23b4d6b3b2106e7d345a63c9a3ae9371082 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Fri, 1 May 2020 16:29:06 -0400 Subject: initialized back-end project --- dichroism/Cargo.toml | 9 +++++++++ dichroism/src/main.rs | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 dichroism/Cargo.toml create mode 100644 dichroism/src/main.rs (limited to 'dichroism') diff --git a/dichroism/Cargo.toml b/dichroism/Cargo.toml new file mode 100644 index 0000000..28e7701 --- /dev/null +++ b/dichroism/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "dichroism" +version = "0.1.0" +authors = ["Adam Carpenter "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/dichroism/src/main.rs b/dichroism/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/dichroism/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} -- cgit v1.2.3