# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "ffsvm" version = "0.9.2" authors = ["Ralf Biedert "] build = false exclude = ["docs/*"] autobins = false autoexamples = false autotests = false autobenches = false description = "A libSVM compatible support vector machine, but up to 10x faster, for games or VR." readme = "README.md" keywords = [ "svm", "libsvm", "machine-learning", ] categories = [ "science", "algorithms", ] license = "MIT" repository = "https://github.com/ralfbiedert/ffsvm-rust" [profile.release] opt-level = 3 lto = true [lib] name = "ffsvm" crate-type = ["rlib"] path = "src/lib.rs" [[example]] name = "basic" path = "examples/basic.rs" [[test]] name = "svm_dense_class" path = "tests/svm_dense_class.rs" [[test]] name = "svm_dense_regression" path = "tests/svm_dense_regression.rs" [[test]] name = "svm_parsing" path = "tests/svm_parsing.rs" [[test]] name = "svm_sparse_class" path = "tests/svm_sparse_class.rs" [[bench]] name = "svm_dense" path = "benches/svm_dense.rs" [[bench]] name = "svm_sparse" path = "benches/svm_sparse.rs" [[bench]] name = "util" path = "benches/util.rs" [dependencies.simd_aligned] version = "0.4" [dev-dependencies.rand] version = "0.6"