Skip to content

Commit

Permalink
Mention Julia 1.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Taaitaaiger committed Jul 28, 2023
1 parent 160c348 commit 1db25d8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions jlrs/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
//! jlrs is a crate that provides access to most of the Julia C API, it can be used to embed Julia
//! in Rust applications and to use functionality it provides when writing `ccall`able
//! functions in Rust. Currently this crate is only tested in combination with Julia 1.6 and 1.9,
//! but also supports Julia 1.7 and 1.8. Using the current stable version is highly recommended.
//! The minimum supported Rust version is currently 1.65.
//! but also supports Julia 1.7, 1.8 and 1.10. Using the current stable version is highly
//! recommended. The minimum supported Rust version is currently 1.65.
//!
//! The documentation assumes you're already familiar with the Julia and Rust programming
//! languages.
Expand Down Expand Up @@ -35,7 +35,7 @@
//! # Prerequisites
//!
//! Julia must be installed before jlrs can be used, jlrs is compatible with Julia 1.6 up to and
//! including Julia 1.9. The JlrsCore package must also have been installed, if this is not the
//! including Julia 1.10. The JlrsCore package must also have been installed, if this is not the
//! case it will automatically be added when jlrs is initialized by default. jlrs has not been
//! tested with juliaup yet on Linux and macOS.
//!
Expand Down Expand Up @@ -94,6 +94,7 @@
//! - `julia-1-7`
//! - `julia-1-8`
//! - `julia-1-9`
//! - `julia-1-10`
//!
//! Exactly one version feature must be enabled. If no version is enabled, or multiple are, jl-sys
//! will fail to compile.
Expand All @@ -107,6 +108,7 @@
//! julia-1-7 = ["jlrs/julia-1-7"]
//! julia-1-8 = ["jlrs/julia-1-8"]
//! julia-1-9 = ["jlrs/julia-1-9"]
//! julia-1-10 = ["jlrs/julia-1-10"]
//! ```
//!
//! In this case you must provide this feature when you build or run your crate:
Expand Down

0 comments on commit 1db25d8

Please sign in to comment.