Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9d3335b
init tokio runtime
vustef Sep 5, 2025
922008e
use macro for async ops, and reuse RT and RESULT_CB
vustef Sep 5, 2025
8c5e345
async wait for batch and sync fetch of the buffer
vustef Sep 5, 2025
fbee1ea
Fix integration test too
vustef Sep 5, 2025
4718e3c
Switch to minimal async api. next step is removing the sync method
vustef Sep 6, 2025
c0ae68a
use simple accessor for the current batch
vustef Sep 7, 2025
7e3be0b
fix C compilation warnings
vustef Sep 7, 2025
23777ce
debug log instead of warn
vustef Sep 7, 2025
f1b577e
cancellation
vustef Sep 7, 2025
dc1e9b5
cleanup error codes
vustef Sep 7, 2025
a510d67
todo comment
vustef Sep 7, 2025
b6f080f
update build to refer to remote repo
vustef Sep 7, 2025
dbfd232
update version
vustef Sep 7, 2025
6650853
trim whitespace
vustef Sep 7, 2025
a769cce
.
vustef Sep 7, 2025
4092b95
cargo fmt
vustef Sep 7, 2025
677892d
Fix integration test
vustef Sep 7, 2025
b0c5f1a
julia features
vustef Sep 7, 2025
d88bb24
fix linker error
vustef Sep 7, 2025
da94376
fix integration test warnings
vustef Sep 7, 2025
4a66e30
don't use default features for integration test, there's no Julia env…
vustef Sep 7, 2025
c2d2dca
Switch to returning batch from an async call
vustef Sep 8, 2025
a03ff37
remove unused bool field
vustef Sep 8, 2025
92871b7
fix fmt
vustef Sep 8, 2025
f10d526
remove unused cbindgen
vustef Sep 9, 2025
1dbb8aa
.
vustef Sep 9, 2025
9044596
minor
vustef Sep 9, 2025
508c3e9
Merge branch 'main' into vs-async
gbrgr Sep 10, 2025
ee328f4
Refactorings
gbrgr Sep 11, 2025
07ee491
More PR comments
gbrgr Sep 11, 2025
206d4bb
Fix free
gbrgr Sep 11, 2025
19c51b8
.
gbrgr Sep 11, 2025
51a026d
Remove function
gbrgr Sep 11, 2025
907675d
Simplify api
gbrgr Sep 11, 2025
3d240d4
Temp state
gbrgr Sep 11, 2025
9106339
.
gbrgr Sep 11, 2025
bffe1fe
Add NULL check
gbrgr Sep 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[target.aarch64-apple-darwin]
rustflags = ["-Clink-arg=-undefined","-Clink-arg=dynamic_lookup"]

[target.x86_64-apple-darwin]
rustflags = ["-Clink-arg=-undefined","-Clink-arg=dynamic_lookup"]
Loading