commit 491659d0d1c41d3ab9926c7fd76a059aecef2b55 Author: ZacJW Date: Sun Mar 24 11:30:19 2024 +0000 Initial workspace diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..c55c45c --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,15 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "rasql-build" +version = "0.1.0" + +[[package]] +name = "rasql-core" +version = "0.1.0" + +[[package]] +name = "rasql-query" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3bb1f48 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[workspace] +resolver = "2" + +members = [ + "rasql-build", + "rasql-core", + "rasql-query", +] diff --git a/rasql-build/Cargo.toml b/rasql-build/Cargo.toml new file mode 100644 index 0000000..9227858 --- /dev/null +++ b/rasql-build/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "rasql-build" +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/rasql-build/src/lib.rs b/rasql-build/src/lib.rs new file mode 100644 index 0000000..e69de29 diff --git a/rasql-core/Cargo.toml b/rasql-core/Cargo.toml new file mode 100644 index 0000000..fe4e437 --- /dev/null +++ b/rasql-core/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "rasql-core" +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/rasql-core/src/lib.rs b/rasql-core/src/lib.rs new file mode 100644 index 0000000..e69de29 diff --git a/rasql-query/Cargo.toml b/rasql-query/Cargo.toml new file mode 100644 index 0000000..cbb57d3 --- /dev/null +++ b/rasql-query/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "rasql-query" +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/rasql-query/src/lib.rs b/rasql-query/src/lib.rs new file mode 100644 index 0000000..e69de29