initial commit

This commit is contained in:
Yuriy Dupyn 2024-02-05 16:17:04 +01:00
parent efad0cc6bd
commit 3d1a4c9479
3 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View file

@ -287,6 +287,7 @@ dependencies = [
"proto",
"serde",
"thiserror",
"tokio",
]
[[package]]

View file

@ -9,5 +9,6 @@ rust-version = "1.74"
[dependencies]
bimap = { version = "0.6.3", features = ["serde"] }
serde = { version = "1.0.196", features = ["derive"] }
tokio = { version = "1.34.0", features = ["full"] }
thiserror = "1.0.50"
proto = { path = "../proto" }

View file

@ -1,6 +1,7 @@
mod error;
mod internals;
pub mod interpreter;
pub mod interpreter2;
pub mod operation;
pub mod restricted_row;
mod result;