Skip to content

Commit

Permalink
Update to BLIS-1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jedbrown committed May 6, 2024
1 parent eca1684 commit 4e93ea4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[workspace]
resolver = "2"
members = ["blis-src"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This repository contains a Rust package to build and link [BLIS], the BLAS-like

```toml
[dependencies]
blas-src = { version = "0.8", features = ["blis"] }
blas-src = { version = "0.10", features = ["blis"] }
```

To access the full BLIS API, direct use of `extern "C"` is necessary at this time.
Expand Down
9 changes: 6 additions & 3 deletions blis-src/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = [
"Jed Brown <[email protected]>",
]
name = "blis-src"
edition = "2018"
edition = "2021"
version = "0.2.1"
license = "MIT OR Apache-2.0"
description = "Rust native linking for BLIS library"
Expand All @@ -30,6 +30,9 @@ static = []
system = []

[dev-dependencies]
libc = "0.2.40"
libc = "0.2.154"
blas-sys = "0.7"
cblas-sys = "0.1"
cblas-sys = "0.1.3"

[package.metadata.release]
tag-name = "{{crate_name}}-{{version}}"
2 changes: 1 addition & 1 deletion blis-src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ Users simply seeking a fast BLAS are encouraged to use

```toml
[dependencies]
blas-src = { version = "0.8", features = ["blis"] }
blas-src = { version = "0.10", features = ["blis"] }
```

0 comments on commit 4e93ea4

Please sign in to comment.