Skip to content

Commit

Permalink
use default features in libsqlite3-sys
Browse files Browse the repository at this point in the history
  • Loading branch information
asg017 committed Oct 6, 2023
1 parent c29952e commit c8c6021
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
toolchain: stable
- run: cargo build --examples --verbose
- run: cargo test
- run: make test
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
with:
toolchain: stable
- run: cargo build --examples --verbose
- run: cargo test
- run: make test
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
with:
toolchain: stable
- run: cargo build --examples --verbose
- run: cargo test
- run: make test
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sqlite-loadable-macros={version="0.0.3", path="./sqlite-loadable-macros"}
serde = {version="1.0.147", features = ["derive"]}
serde_json = "1.0.87"
bitflags = "1.3.2"
libsqlite3-sys = {version="0.26.0", default-features = false, optional=true, features=["bundled"]}
libsqlite3-sys = {version="0.26.0", optional=true, features=["bundled"]}

[dev-dependencies]
rusqlite = "0.29.0"
Expand Down
2 changes: 1 addition & 1 deletion src/ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub unsafe fn faux_sqlite_extension_init2(api: *mut sqlite3_api_routines) {
}
}

//definex!("value_text", c_uchar);
#[cfg(not(feature = "static"))]
static EXPECT_MESSAGE: &str =
"sqlite-loadable error: expected method on SQLITE3_API. Please file an issue";

Expand Down

0 comments on commit c8c6021

Please sign in to comment.