Skip to content

Commit

Permalink
Merge pull request #7 from Duumbo/dev-documentation
Browse files Browse the repository at this point in the history
Dev documentation
  • Loading branch information
Duumbo authored Jun 6, 2023
2 parents 6d3e791 + 5882aba commit 733f320
Show file tree
Hide file tree
Showing 18 changed files with 3,002 additions and 735 deletions.
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@ name = "pfapack"
version = "0.1.0"
edition = "2021"
license-file = "LapackLicense"
description = "Rust interface for the pfapack library, a Fortran library to compute Pfaffians."
repository = "https://github.com/Duumbo/pfapack-rs/tree/main"
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
libc = "0.2"
pfapack-sys = "0.1.0"
pfapack-sys = "0.1.1"

[dependencies.num-complex]
version = "0.4"
default-features = false

[dev-dependencies]
pretty_assertions = "1"
assert = "0.7.4"
6 changes: 6 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
fn main() {
println!("cargo:rustc-link-lib=pfapack");
println!("cargo:rustc-link-lib=cpfapack");
println!("cargo:rustc-link-lib=lapack");
println!("cargo:rustc-link-lib=blas");
}
2 changes: 1 addition & 1 deletion pfapack-sys
Loading

0 comments on commit 733f320

Please sign in to comment.