diff --git a/Cargo.lock b/Cargo.lock index 74ca8fe..59963ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,5 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. [[package]] -name = "unnamed-crypto" +name = "plot" version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 3b980c6..f73f4c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,5 @@ -[package] -name = "unnamed-crypto" -version = "0.1.0" -authors = ["Jake Hillion "] -edition = "2018" +[workspace] -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] +members = [ + "plot", +] \ No newline at end of file diff --git a/plot/Cargo.toml b/plot/Cargo.toml new file mode 100644 index 0000000..76dc924 --- /dev/null +++ b/plot/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "plot" +version = "0.1.0" +authors = ["Jake Hillion "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/src/main.rs b/plot/src/main.rs similarity index 100% rename from src/main.rs rename to plot/src/main.rs