From a578098c32ed0c7c91ca83f833270ee3083fd58c Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Sat, 5 Sep 2020 18:08:11 +0200 Subject: [PATCH] Avoid publishing non-Rust files to crates.io The crate tarball still contain the tests and the benchmarks, just in case people want to run tests from a downloaded crate. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 481b372..7bc539f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,7 @@ keywords = ["smawk", "matrix", "optimization", "dynamic-programming"] categories = ["algorithms", "science"] license = "MIT" edition = "2018" +exclude = [".github/", ".gitignore", "benches/", "examples/"] [badges] travis-ci = { repository = "mgeisler/smawk" }