diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4ffd581..c35f355 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@v4 with: repository: LadybugDB/ladybug - fetch-depth: 1 + ref: 'v0.17.0' path: ladybug - name: Checkout Sigma diff --git a/package-lock.json b/package-lock.json index 609b799..13ec860 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1950,10 +1950,9 @@ } }, "node_modules/@tauri-apps/api": { - "version": "2.10.1", - "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.10.1.tgz", - "integrity": "sha512-hKL/jWf293UDSUN09rR69hrToyIXBb8CjGaWC7gfinvnQrBVvnLr08FeFi38gxtugAVyVcTa5/FD/Xnkb1siBw==", - "license": "Apache-2.0 OR MIT", + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.11.0.tgz", + "integrity": "sha512-7CinYODhky9lmO23xHnUFv0Xt43fbtWMyxZcLcRBlFkcgXKuEirBvHpmtJ89YMhyeGcq20Wuc47Fa4XjyniywA==", "funding": { "type": "opencollective", "url": "https://opencollective.com/tauri" diff --git a/scripts/download_icebug.sh b/scripts/download_icebug.sh index c785d84..2426aa3 100755 --- a/scripts/download_icebug.sh +++ b/scripts/download_icebug.sh @@ -7,7 +7,7 @@ PROJECT_DIR="$(cd "$SCRIPT_DIR/.." && pwd)" REPOSITORY="${ICEBUG_GITHUB_REPOSITORY:-Ladybug-Memory/icebug}" TARGET_DIR="${ICEBUG_TARGET_DIR:-$PROJECT_DIR/src-tauri/icebug}" -VERSION="${ICEBUG_VERSION:-12.8}" +VERSION="${ICEBUG_VERSION:-12.9}" OS="$(uname -s)" ARCH="$(uname -m)" diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index abfa47d..363ceaf 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1896,8 +1896,9 @@ dependencies = [ [[package]] name = "icebug" -version = "0.1.0" -source = "git+https://github.com/Ladybug-Memory/icebug-rust#18dbd496d6bc85e5cfff952c73841401cb834134" +version = "12.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "faefb8196c2e3a749df1035bf9f767b9ef2fa93e1b24734adb07ed5e75217c64" dependencies = [ "arrow-array 56.2.1", "arrow-buffer 56.2.1", @@ -2201,7 +2202,8 @@ dependencies = [ [[package]] name = "lbug" version = "0.17.0" -source = "git+https://github.com/LadybugDB/ladybug-rust#1e35ceb4cf4c5feeeede23ca5e4551274ade4d31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee684d287bb9b1a6610e044bf484b2fb256e4ed76efeff32d944a85b0f34a59a" dependencies = [ "arrow", "cmake", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 6f02092..f92ef8b 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -18,8 +18,6 @@ icebug-analytics = ["dep:icebug"] tauri = { version = "2", features = [] } serde = { version = "1", features = ["derive"] } serde_json = "1" -lbug = { git = "https://github.com/LadybugDB/ladybug-rust", features = ["arrow"] } -icebug = { git = "https://github.com/Ladybug-Memory/icebug-rust", optional = true } arrow-array = { version = "56" } arrow-ipc = { version = "56" } arrow-schema = { version = "56" } @@ -27,3 +25,5 @@ walkdir = "2" dirs = "5" fastrand = "2" reqwest = { version = "0.13.3", features = ["blocking", "json"] } +icebug = { version = "12.9.0", optional = true } +lbug = { version = "0.17.0", features = ["arrow"] }