summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Carpenter <atc@53hor.net>2020-05-01 16:29:06 -0400
committerAdam Carpenter <atc@53hor.net>2020-05-01 16:29:06 -0400
commit12fab23b4d6b3b2106e7d345a63c9a3ae9371082 (patch)
tree31d79b0124b22a29ea24f0ef03e5d828caf999be
parentfd8e2b675ea453da46c87b1358fcebbf78930fa2 (diff)
downloadtheglassyladies-12fab23b4d6b3b2106e7d345a63c9a3ae9371082.tar.xz
theglassyladies-12fab23b4d6b3b2106e7d345a63c9a3ae9371082.zip
initialized back-end project
-rw-r--r--dichroism/Cargo.toml9
-rw-r--r--dichroism/src/main.rs3
2 files changed, 12 insertions, 0 deletions
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 <atc@53hor.net>"]
+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!");
+}