Skip to content
Merged
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
1 change: 1 addition & 0 deletions rust/cubestore/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ downloaded
cubestore/target
cubesql/target
cubestore-sql-tests/data/**
cubestore/db-tmp
112 changes: 70 additions & 42 deletions rust/cubestore/Cargo.lock

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

1 change: 1 addition & 0 deletions rust/cubestore/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ COPY cubestore/cubezetasketch cubezetasketch
COPY cubestore/cubedatasketches cubedatasketches
COPY cubestore/cuberpc cuberpc
COPY cubestore/cubestore-sql-tests cubestore-sql-tests
COPY cubestore/cubestore/benches cubestore/benches
COPY cubestore/cubestore/Cargo.toml cubestore/Cargo.toml
RUN mkdir -p cubestore/src/bin && \
echo "fn main() {print!(\"Dummy main\");} // dummy file" > cubestore/src/bin/cubestored.rs
Expand Down
5 changes: 1 addition & 4 deletions rust/cubestore/cubestore-sql-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,20 @@ async-compression = { version = "0.3.7", features = ["gzip", "tokio"] }
async-trait = "0.1.36"
cubestore = { path = "../cubestore" }
flate2 = "1.0.22"
futures = "0.3.5"
itertools = "0.9.0"
lazy_static = "1.4.0"
log = "0.4.11"
pretty_assertions = "0.7.1"
reqwest = { version = "0.12.5", features = ["json", "rustls-tls", "stream", "http2"], default-features = false }
scopeguard = "1.1.0"
serde = "1.0.115"
serde_derive = "1.0.115"
tokio = { version = "1", features = ["full", "rt"] }
futures-timer = "3.0.2"
indoc = "1.0"
tempfile = "3.2.0"
tar = "0.4.38"

[dev-dependencies]
criterion = { version = "0.4.0", features = ["async_tokio", "html_reports"] }
criterion = { version = "0.5.1", features = ["async_tokio", "html_reports"] }
cuberockstore = { path = "../cuberockstore" }

[[bench]]
Expand Down
7 changes: 6 additions & 1 deletion rust/cubestore/cubestore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ libc = { version = "0.2.97", optional = true }

[dependencies]
base64 = "0.13.0"
bumpalo = "3.6.1"
tokio = { version = "1", features = ["full", "rt"] }
warp = { version = "0.3.6" }
sqlparser = { git = 'https://github.com/cube-js/sqlparser-rs.git', rev = "4388f6712dae5073c2d71d74f64cae2edd418066" }
Expand Down Expand Up @@ -120,6 +119,12 @@ sasl2-sys = { version = "0.1.6", features = ["vendored"] }

[dev-dependencies]
pretty_assertions = "0.7.1"
criterion = { version = "0.5.1", features = ["async_tokio", "html_reports"] }
md5 = "0.8.0"

[[bench]]
name = "cachestore_queue"
harness = false

[features]
# When enabled, child processes will die whenever parent process exits.
Expand Down
Loading
Loading