Skip to content

Commit 77b5a79

Browse files
committed
upgrade cr-sqlite for a nice perf boost, remove darwin x86_64 target for now
1 parent 9345adf commit 77b5a79

File tree

7 files changed

+1
-5
lines changed

7 files changed

+1
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
include:
20-
- target: x86_64-apple-darwin
20+
- target: aarch64-apple-darwin
2121
os: macos-latest
2222
- target: x86_64-unknown-linux-gnu
2323
os: ubuntu-latest

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525
strategy:
2626
matrix:
2727
include:
28-
- target: x86_64-apple-darwin
29-
os: macos-latest
3028
- target: aarch64-apple-darwin
3129
os: macos-latest
3230
- target: x86_64-unknown-linux-gnu
6.45 KB
Binary file not shown.
-1.11 MB
Binary file not shown.
20.1 KB
Binary file not shown.
22.3 KB
Binary file not shown.

crates/corro-types/src/sqlite.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ pub const CRSQL_EXT_FILENAME: &str = "crsqlite.so";
2121

2222
#[cfg(all(target_arch = "aarch64", target_os = "macos"))]
2323
pub const CRSQL_EXT: &[u8] = include_bytes!("../crsqlite-darwin-aarch64.dylib");
24-
#[cfg(all(target_arch = "x86_64", target_os = "macos"))]
25-
pub const CRSQL_EXT: &[u8] = include_bytes!("../crsqlite-darwin-x86_64.dylib");
2624
#[cfg(all(target_arch = "x86_64", target_os = "linux"))]
2725
pub const CRSQL_EXT: &[u8] = include_bytes!("../crsqlite-linux-x86_64.so");
2826
#[cfg(all(target_arch = "aarch64", target_os = "linux"))]

0 commit comments

Comments
 (0)