From 99404a705f55c6de0bb7c243c7ce74f3ea792a2c Mon Sep 17 00:00:00 2001 From: Russel Arbore <russel.jma@gmail.com> Date: Sat, 2 Sep 2023 15:23:36 -0500 Subject: [PATCH] Basic cargo workspace --- .gitignore | 1 + Cargo.lock | 7 +++++++ Cargo.toml | 5 +++++ DESIGN.md | 0 README.md | 3 +++ hercules_ir/Cargo.toml | 4 ++++ hercules_ir/src/lib.rs | 0 7 files changed, 20 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 DESIGN.md create mode 100644 hercules_ir/Cargo.toml create mode 100644 hercules_ir/src/lib.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..ea8c4bf7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 00000000..0e90bb60 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "hercules_ir" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..c93ca705 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,5 @@ +[workspace] + +members = [ + "hercules_ir" +] diff --git a/DESIGN.md b/DESIGN.md new file mode 100644 index 00000000..e69de29b diff --git a/README.md b/README.md index e69de29b..32a3a136 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,3 @@ +# Hercules + +See [DESIGN.md](DESIGN.md) for a discussion of Hercules' design. diff --git a/hercules_ir/Cargo.toml b/hercules_ir/Cargo.toml new file mode 100644 index 00000000..da5927d1 --- /dev/null +++ b/hercules_ir/Cargo.toml @@ -0,0 +1,4 @@ +[package] +name = "hercules_ir" +version = "0.1.0" +authors = ["Russel Arbore <rarbore2@illinois.edu>"] diff --git a/hercules_ir/src/lib.rs b/hercules_ir/src/lib.rs new file mode 100644 index 00000000..e69de29b -- GitLab