Skip to content

Commit 4e93ea4

Browse files
committed
Update to BLIS-1.0
1 parent eca1684 commit 4e93ea4

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[workspace]
2+
resolver = "2"
23
members = ["blis-src"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This repository contains a Rust package to build and link [BLIS], the BLAS-like
44

55
```toml
66
[dependencies]
7-
blas-src = { version = "0.8", features = ["blis"] }
7+
blas-src = { version = "0.10", features = ["blis"] }
88
```
99

1010
To access the full BLIS API, direct use of `extern "C"` is necessary at this time.

blis-src/Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = [
44
"Jed Brown <[email protected]>",
55
]
66
name = "blis-src"
7-
edition = "2018"
7+
edition = "2021"
88
version = "0.2.1"
99
license = "MIT OR Apache-2.0"
1010
description = "Rust native linking for BLIS library"
@@ -30,6 +30,9 @@ static = []
3030
system = []
3131

3232
[dev-dependencies]
33-
libc = "0.2.40"
33+
libc = "0.2.154"
3434
blas-sys = "0.7"
35-
cblas-sys = "0.1"
35+
cblas-sys = "0.1.3"
36+
37+
[package.metadata.release]
38+
tag-name = "{{crate_name}}-{{version}}"

blis-src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ Users simply seeking a fast BLAS are encouraged to use
2121

2222
```toml
2323
[dependencies]
24-
blas-src = { version = "0.8", features = ["blis"] }
24+
blas-src = { version = "0.10", features = ["blis"] }
2525
```

0 commit comments

Comments
 (0)