Skip to content

Commit

Permalink
fix: bundle sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberb committed Oct 25, 2024
1 parent acf12a1 commit 115808a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,6 @@ commands:
- run:
name: Verify the build environment
command: ./libs/verify-desktop-environment.sh
# Install SQLite development libraries
- run:
name: Install SQLite development libraries
command: sudo apt-get install libsqlite3-dev
run-tests:
steps:
- run: automation/tests.py rust-tests
Expand Down
2 changes: 1 addition & 1 deletion components/remote_settings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ error-support = { path = "../support/error" }
viaduct = { path = "../viaduct" }
url = "2.1" # mozilla-central can't yet take 2.2 (see bug 1734538)
camino = "1.0"
rusqlite = "0.31.0"
rusqlite = { workspace = true, features = ["bundled"] }

[build-dependencies]
uniffi = { workspace = true, features = ["build"] }
Expand Down

0 comments on commit 115808a

Please sign in to comment.