Initial workspace

This commit is contained in:
ZacJW 2024-03-24 11:30:19 +00:00
commit 491659d0d1
9 changed files with 48 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

15
Cargo.lock generated Normal file
View file

@ -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"

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[workspace]
resolver = "2"
members = [
"rasql-build",
"rasql-core",
"rasql-query",
]

8
rasql-build/Cargo.toml Normal file
View file

@ -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]

0
rasql-build/src/lib.rs Normal file
View file

8
rasql-core/Cargo.toml Normal file
View file

@ -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]

0
rasql-core/src/lib.rs Normal file
View file

8
rasql-query/Cargo.toml Normal file
View file

@ -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]

0
rasql-query/src/lib.rs Normal file
View file