Don’t include the interop feature in Github Actions.

This commit is contained in:
Martin Hoffmann
2020-08-27 11:48:35 +02:00
parent d703a55f2f
commit bb46dcc8ae
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -20,5 +20,5 @@ jobs:
- if: matrix.rust != 'nightly'
run: cargo clippy --all-features -- -D warnings
- run: cargo build --no-default-features --verbose
- run: cargo test --all-features --verbose
- run: cargo test --features="master resolv resolv-sync sign tsig validate" --verbose
+2
View File
@@ -27,6 +27,8 @@ smallvec = { version = "1.2", optional = true }
tokio = { version = "0.2.13", optional = true, features = ["io-util", "macros", "tcp", "time", "udp"] }
[features]
# If you add a feature here, also add it to .github/workflows/ci.yml for the
# cargo test run. Only interop must not be present.
default = ["std"]
interop = ["bytes", "ring"]
master = ["std", "bytes", "chrono"]