diff --git a/Cargo.toml b/Cargo.toml index 1a108f1..3e0b7c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,5 @@ -[package] -name = "minisql" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] -bimap = "0.6.3" +[workspace] +resolver = "2" +members = [ + "minisql", +] diff --git a/minisql/Cargo.toml b/minisql/Cargo.toml new file mode 100644 index 0000000..1a108f1 --- /dev/null +++ b/minisql/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "minisql" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +bimap = "0.6.3" diff --git a/src/main.rs b/minisql/src/main.rs similarity index 100% rename from src/main.rs rename to minisql/src/main.rs