Skip to content

Commit 1d3ec29

Browse files
committed
Remove unused debugging feature
1 parent cc35165 commit 1d3ec29

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
5858

5959
[features]
6060
deny-warnings = []
61-
debugging = []

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ install:
3737
build: false
3838

3939
build_script:
40-
- cargo build --features debugging
40+
- cargo build --features deny-warnings
4141

4242
test_script:
43-
- cargo test --features debugging
43+
- cargo test --features deny-warnings
4444

4545
notifications:
4646
- provider: Email

ci/base-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
1212
remark -f ./*.md -f doc/*.md > /dev/null
1313
fi
1414
# build clippy in debug mode and run tests
15-
cargo build --features "debugging deny-warnings"
16-
cargo test --features "debugging deny-warnings"
15+
cargo build --features deny-warnings
16+
cargo test --features deny-warnings
1717

1818
(cd clippy_lints && cargo test)
1919
(cd rustc_tools_util && cargo test)

clippy_lints/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ semver = "0.9.0"
3535
url = { version = "2.1.0", features = ["serde"] }
3636

3737
[features]
38-
debugging = []
38+
deny-warnings = []

0 commit comments

Comments
 (0)