mirror of
https://github.com/clap-rs/clap
synced 2024-12-15 15:22:30 +00:00
f9a7651619
This avoids breakage when deriving `StructOpt` when `proc_macro2`'s nightly feature is enabled. See https://github.com/alexcrichton/proc-macro2/issues/67 for details.
15 lines
243 B
YAML
15 lines
243 B
YAML
language: rust
|
|
cache: cargo
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
matrix:
|
|
include:
|
|
- rust: nightly
|
|
env: FEATURES="--features testing_only_proc_macro2_nightly"
|
|
allow_failures:
|
|
- rust: nightly
|
|
|
|
script:
|
|
- cargo test $FEATURES
|