# [[file:lbfgs.note::1a4d1f71][1a4d1f71]] [package] name = "gosh-lbfgs" edition = "2021" version = "0.1.0" authors = ["Wenping Guo "] description = "Fast and safe Rust implementation of LBFGS and OWL-QN algorithms ported from Naoaki Okazaki's C library libLBFGS." homepage = "https://github.com/ybyygu/rust-lbfgs" repository = "https://github.com/ybyygu/rust-lbfgs" readme = "README.md" license = "MIT OR Apache-2.0" exclude = ["bin/*", "docs/*", "liblbfgs/", "*.note*"] [dependencies] log = "0.4" anyhow = "1" linesearch = { version = "0.1.0", package="gosh-linesearch"} # workspace independent [workspace] [dev-dependencies] approx = "0.5" criterion = "0.3" vecfx = "0.1" [features] # for adhoc hacking adhoc = [] [[bench]] name = "rosenbrock" harness = false # 1a4d1f71 ends here