First commit

This commit is contained in:
Andrew Kane
2021-07-26 13:30:42 -07:00
commit ad467188f4
13 changed files with 620 additions and 0 deletions

19
Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "libmf"
version = "0.1.0"
description = "Large-scale sparse matrix factorization for Rust"
repository = "https://github.com/ankane/libmf-rust"
license = "BSD-3-Clause"
authors = ["Andrew Kane <andrew@ankane.org>"]
edition = "2018"
readme = "README.md"
exclude = ["vendor/libmf/demo/*", "vendor/libmf/windows/*"]
links = "mf"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2"
[build-dependencies]
cc = "1.0"