Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion src/01-dependencies/rust.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rust

The minimum supported Rust version (MSRV) is currently 1.85, but some features may require a more recent version. The MSRV can be bumped in minor releases of jlrs.[^1]
The minimum supported Rust version (MSRV) is currently 1.97, but some features may require a more recent version. The MSRV can be bumped in minor releases of jlrs.[^1]

Note for Windows users: only the GNU toolchain is supported for dynamic libraries, applications that embed Julia can use either the GNU or MSVC toolchain.

Expand Down
2 changes: 1 addition & 1 deletion src/09-async-runtime/async-runtime.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Async runtime

The async runtime lets us run Julia on a background thread, its handle lets us send tasks to this thread. We need to enable the `async-rt` feature to use it. Some tasks support async operations, so we'll also need an async executor. A tokio-based executor is available when the `tokio-rt` feature is enabled, this feature automatically enables `async-rt` as well. The async runtime requires using at least Rust 1.85.
The async runtime lets us run Julia on a background thread, its handle lets us send tasks to this thread. We need to enable the `async-rt` feature to use it. Some tasks support async operations, so we'll also need an async executor. A tokio-based executor is available when the `tokio-rt` feature is enabled, this feature automatically enables `async-rt` as well.

<!-- DOCTEST START -->
```rust,ignore
Expand Down
Loading