Move the main subcrate into the outer crate

This commit is contained in:
Austen Adler 2023-02-22 21:55:15 -05:00
parent 4b141e53df
commit c212d48263
8 changed files with 5 additions and 18 deletions

View File

@ -5,13 +5,14 @@ edition = "2021"
[workspace]
members = [
# ".",
".",
"./words",
"./this_algorithm",
# "./this_algorithm",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde="1"
s2="0.0.12"
s2 = "0.0.12"
thiserror = "1.0.38"
words = {path="./words"}

View File

@ -1,3 +0,0 @@
fn main() {
println!("Hello, world!");
}

View File

@ -1,11 +0,0 @@
[package]
name = "this_algorithm"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
s2 = "0.0.12"
thiserror = "1.0.38"
words={path="../words"}