Move max_level_features project out of tests to avoid warning

fixes: #270
This commit is contained in:
David Kellum 2019-02-01 16:35:01 -08:00
parent d9f8141a39
commit 9b48836440
3 changed files with 4 additions and 4 deletions

View File

@ -12,8 +12,8 @@ script:
- cargo test --verbose
- cargo test --verbose --features serde
- cargo test --verbose --features std
- cargo run --verbose --manifest-path tests/max_level_features/Cargo.toml
- cargo run --verbose --manifest-path tests/max_level_features/Cargo.toml --release
- cargo run --verbose --manifest-path test_max_level_features/Cargo.toml
- cargo run --verbose --manifest-path test_max_level_features/Cargo.toml --release
notifications:
email:

View File

@ -4,9 +4,9 @@ version = "0.1.0"
publish = false
[[bin]]
name = "max_level_features"
name = "test_max_level_features"
path = "main.rs"
[dependencies.log]
path = "../.."
path = ".."
features = ["max_level_debug", "release_max_level_info"]