Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since we explicit add a test section to specify the `tests.rs` file, there is no need for auto tests inferece. This commit is to disable the annoying warning: warning: An explicit [[test]] section is specified in Cargo.toml which currently disables Cargo from automatically inferring other test targets. This inference behavior will change in the Rust 2018 edition and the following files will be included as a test target: * util.rs * macros.rs This is likely to break cargo build or cargo test as these files may not be ready to be compiled as a test target today. You can future-proof yourself and disable this warning by adding `autotests = false` to your [package] section. You may also move the files to a location where Cargo would not automatically infer them to be a target, such as in subfolders. For more information on this warning you can consult rust-lang/cargo#5330
- Loading branch information