File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
sqliter-driver/src/nativeInterop/cinterop Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ kotlin.code.style=official
2
2
3
3
GROUP =co.touchlab
4
4
5
- VERSION_NAME =1.3.1
5
+ VERSION_NAME =1.3.2
6
6
KOTLIN_VERSION =1.9.20
7
7
8
8
kotlin.native.ignoreDisabledTargets =true
Original file line number Diff line number Diff line change @@ -6,3 +6,14 @@ linkerOpts.linux_x64 = -lpthread -ldl
6
6
linkerOpts.macos_x64 = -lpthread -ldl
7
7
8
8
noStringConversion = sqlite3_prepare_v2 sqlite3_prepare_v3
9
+
10
+ # These functions aren't guaranteed to be callable and we don't use them. The functions listed here
11
+ # come from:
12
+ # - mutex_held / mutex_notheld: Debug only, https://sqlite.org/c3ref/mutex_held.html
13
+ # - column database / table / origin name: Opt-in, https://sqlite.org/c3ref/column_database_name.html
14
+ # - sqlite3_normalized_sql: Opt-in, https://sqlite.org/c3ref/expanded_sql.html
15
+ # - Snapshots: Opt-in, https://sqlite.org/compile.html#enable_snapshot
16
+ # - Scanstatus: Opt-in, https://sqlite.org/c3ref/stmt_scanstatus.html
17
+ # - sqlite3_unlock_notify: Opt-in, https://sqlite.org/unlock_notify.html
18
+ # - win32: Platform-specific, not used here, https://sqlite.org/c3ref/win32_set_directory.html
19
+ excludedFunctions = sqlite3_mutex_held sqlite3_mutex_notheld sqlite3_column_database_name sqlite3_column_database_name16 sqlite3_column_table_name sqlite3_column_table_name16 sqlite3_column_origin_name sqlite3_column_origin_name16 sqlite3_normalized_sql sqlite3_snapshot_get sqlite3_snapshot_free sqlite3_snapshot_open sqlite3_snapshot_cmp sqlite3_snapshot_recover sqlite3_stmt_scanstatus sqlite3_stmt_scanstatus_reset sqlite3_unlock_notify sqlite3_win32_set_directory sqlite3_win32_set_directory8 sqlite3_win32_set_directory16
You can’t perform that action at this time.
0 commit comments