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
202 changes: 196 additions & 6 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/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"cubestore",
"cubestore-sql-tests",
"cubehll",
"cubedatasketches",
"cubezetasketch",
"cuberpc",
"cuberockstore",
Expand Down
1 change: 1 addition & 0 deletions rust/cubestore/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ COPY Cargo.lock .
COPY cuberockstore cuberockstore
COPY cubehll cubehll
COPY cubezetasketch cubezetasketch
COPY cubedatasketches cubedatasketches
COPY cuberpc cuberpc
COPY cubestore-sql-tests cubestore-sql-tests
COPY cubestore/Cargo.toml cubestore/Cargo.toml
Expand Down
12 changes: 12 additions & 0 deletions rust/cubestore/cubedatasketches/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "cubedatasketches"
version = "0.1.0"
authors = ["Cube Dev, Inc."]
edition = "2021"
license = "Apache-2.0"
description = "Implementation of HLL from Apache DataSketches"

[dependencies]

[target.'cfg(not(target_os = "windows"))'.dependencies]
dsrs = { git = "https://github.com/cube-js/datasketches-rs.git", branch = "cubestore" }
1 change: 1 addition & 0 deletions rust/cubestore/cubedatasketches/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Overview
Loading