Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ members = [
"whopper",
"perf/throughput/turso",
"perf/throughput/rusqlite",
"perf/encryption"
"perf/encryption",
"common",
]
exclude = [
"perf/latency/limbo",
Expand Down Expand Up @@ -62,6 +63,7 @@ limbo_regexp = { path = "extensions/regexp", version = "0.4.0-pre.1" }
limbo_uuid = { path = "extensions/uuid", version = "0.4.0-pre.1" }
turso_parser = { path = "parser", version = "0.4.0-pre.1" }
limbo_fuzzy = { path = "extensions/fuzzy", version = "0.4.0-pre.1" }
turso_common = { path = "common", version = "0.4.0-pre.1" }
sql_generation = { path = "sql_generation" }
strum = { version = "0.26", features = ["derive"] }
strum_macros = "0.26"
Expand Down
26 changes: 26 additions & 0 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[package]
name = "turso_common"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true

[lib]
path = "lib.rs"

[features]
default = ["json"]
serde = ["dep:serde"]
json = []

[dependencies]
either.workspace = true
miette.workspace = true
serde = { workspace = true, optional = true }
strum.workspace = true
strum_macros.workspace = true
thiserror.workspace = true
turso_macros.workspace = true
turso_parser.workspace = true
uncased = "0.9.10"
5 changes: 5 additions & 0 deletions common/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pub mod numeric;
pub mod schema;
pub mod table_reference;
pub mod utils;
pub mod value;
Loading
Loading