mirror of
https://github.com/OMGeeky/yup-oauth2.git
synced 2025-12-28 23:25:43 +01:00
* It should help to keep track of how to properly call cargo in nightly mode. After all, I have wasted some time, multiple times just trying to figure out that I forgot to add the nightly feature. * Slightly improved structure of lib.rs and includes Related to #12
11 lines
335 B
Makefile
11 lines
335 B
Makefile
.PHONY = nightly
|
|
|
|
help:
|
|
$(info -- Targets -- )
|
|
$(info )
|
|
$(info nightly - run cargo with nightly configuration, set ARGS to something like 'build'. rustc must be set to nightly)
|
|
$(info _____________Note that for using stable, you can use cargo directly)
|
|
$(info )
|
|
|
|
nightly:
|
|
cargo $(ARGS) --no-default-features --features=nightly
|