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