File tree Expand file tree Collapse file tree 6 files changed +44
-21
lines changed Expand file tree Collapse file tree 6 files changed +44
-21
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+ workflow_dispatch :
11
+
12
+ concurrency :
13
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
14
+ cancel-in-progress : true
15
+
16
+ jobs :
17
+ check :
18
+ runs-on : ubuntu-latest
19
+ steps :
20
+ - uses : actions/checkout@v4
21
+ - run : rustup toolchain install stable --profile=minimal --component clippy --component rustfmt
22
+ - run : cargo clippy -- -D warnings
23
+ - run : cargo fmt --all -- --check
24
+
25
+ test :
26
+ runs-on : ubuntu-latest
27
+ steps :
28
+ - uses : actions/checkout@v4
29
+ - run : rustup toolchain install stable --profile=minimal
30
+ - run : cargo test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lapack"
3
- version = " 0.19.0"
4
- license = " Apache-2.0/MIT"
3
+ version = " 0.20.0"
4
+ edition = " 2021"
5
+ license = " Apache-2.0 OR MIT"
5
6
authors = [
6
7
" Andrew Straw <[email protected] >" ,
7
8
" Crozet Sébastien <[email protected] >" ,
@@ -27,5 +28,5 @@ version = "0.4"
27
28
default-features = false
28
29
29
30
[dependencies .lapack-sys ]
30
- version = " 0.14 "
31
+ version = " 0.15 "
31
32
default-features = false
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ The following two notices apply to every file of the project.
11
11
## The Apache License
12
12
13
13
```
14
- Copyright 2014–2021 The lapack Developers
14
+ Copyright 2014–2025 The lapack Developers
15
15
16
16
Licensed under the Apache License, Version 2.0 (the “License”); you may not use
17
17
this file except in compliance with the License. You may obtain a copy of the
@@ -28,7 +28,7 @@ specific language governing permissions and limitations under the License.
28
28
## The MIT License
29
29
30
30
```
31
- Copyright 2014–2021 The lapack Developers
31
+ Copyright 2014–2025 The lapack Developers
32
32
33
33
Permission is hereby granted, free of charge, to any person obtaining a copy of
34
34
this software and associated documentation files (the “Software”), to deal in
Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ will be licensed according to the terms given in [LICENSE.md](LICENSE.md).
45
45
[ architecture ] : https://blas-lapack-rs.github.io/architecture
46
46
[ lapack ] : https://en.wikipedia.org/wiki/LAPACK
47
47
48
- [ build-img ] : https://travis-ci.org /blas-lapack-rs/lapack. svg?branch=master
49
- [ build-url ] : https://travis-ci.org /blas-lapack-rs/lapack
48
+ [ build-img ] : https://github.com /blas-lapack-rs/lapack/actions/workflows/build.yml/badge. svg
49
+ [ build-url ] : https://github.com /blas-lapack-rs/lapack/actions/workflows/build.yml
50
50
[ documentation-img ] : https://docs.rs/lapack/badge.svg
51
51
[ documentation-url ] : https://docs.rs/lapack
52
52
[ package-img ] : https://img.shields.io/crates/v/lapack.svg
Original file line number Diff line number Diff line change 27
27
//! [architecture]: https://blas-lapack-rs.github.io/architecture
28
28
//! [lapack]: https://en.wikipedia.org/wiki/LAPACK
29
29
30
+ #![ allow(
31
+ clippy:: missing_safety_doc,
32
+ clippy:: missing_transmute_annotations,
33
+ clippy:: too_many_arguments
34
+ ) ]
35
+
30
36
extern crate lapack_sys as ffi;
31
- extern crate libc;
32
37
extern crate num_complex as num;
33
38
34
39
use std:: mem:: transmute;
You can’t perform that action at this time.
0 commit comments