From 491659d0d1c41d3ab9926c7fd76a059aecef2b55 Mon Sep 17 00:00:00 2001 From: ZacJW Date: Sun, 24 Mar 2024 11:30:19 +0000 Subject: [PATCH] Initial workspace --- .gitignore | 1 + Cargo.lock | 15 +++++++++++++++ Cargo.toml | 8 ++++++++ rasql-build/Cargo.toml | 8 ++++++++ rasql-build/src/lib.rs | 0 rasql-core/Cargo.toml | 8 ++++++++ rasql-core/src/lib.rs | 0 rasql-query/Cargo.toml | 8 ++++++++ rasql-query/src/lib.rs | 0 9 files changed, 48 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 rasql-build/Cargo.toml create mode 100644 rasql-build/src/lib.rs create mode 100644 rasql-core/Cargo.toml create mode 100644 rasql-core/src/lib.rs create mode 100644 rasql-query/Cargo.toml create mode 100644 rasql-query/src/lib.rs 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