From 22bbc83d83f6ff9ccbc249cfd9ea19ea64d33a80 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Tue, 25 Jul 2023 09:56:14 -0700 Subject: [PATCH] Configure workspace --- Cargo.lock | 7 +++++++ Cargo.toml | 10 ++-------- dict/Cargo.toml | 8 ++++++++ {src => dict/src}/main.rs | 0 4 files changed, 17 insertions(+), 8 deletions(-) create mode 100644 Cargo.lock create mode 100644 dict/Cargo.toml rename {src => dict/src}/main.rs (100%) diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..2786253 --- /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 = "jichanorg-dict" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index d31d346..c035b6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,2 @@ -[package] -name = "" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] +[workspace] +members = ["dict"] diff --git a/dict/Cargo.toml b/dict/Cargo.toml new file mode 100644 index 0000000..6cf620b --- /dev/null +++ b/dict/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "jichanorg-dict" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/src/main.rs b/dict/src/main.rs similarity index 100% rename from src/main.rs rename to dict/src/main.rs