Use full path imports for dependencies to reduce cfg hell

This commit is contained in:
Philipp Hoenisch 2020-10-28 11:18:14 +11:00
parent a1351e5461
commit b8fd9a734f
No known key found for this signature in database
GPG key ID: E5F8E74C672BC666
2 changed files with 8 additions and 10 deletions

View file

@ -40,10 +40,10 @@ jobs:
- name: Check code formatting
run: cargo fmt --all -- --check
- name: Run clippy
- name: Run clippy with default features
run: cargo clippy --workspace --all-targets -- -D warnings
- name: Run clippy all features
- name: Run clippy with all features enabled (e.g. tor)
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
build_test: