Skip to content

Commit ef75b49

Browse files
committed
Get strum_macros as feature
Should provide better synchronization between strum and its derived macros
1 parent e485f7f commit ef75b49

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

Diff for: Cargo.lock

+5-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ tokei = "12.0.0"
2525
askalono = "0.4.2"
2626
bytecount = "0.6.0"
2727
clap = "2.33.3"
28-
strum = "0.19.2"
29-
strum_macros = "0.18.0"
28+
strum = { version = "0.19.2", features = ["derive"] }
3029
image = "0.23.5"
3130
regex = "1"
3231
futures = "0.3.5"

Diff for: src/main.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#[macro_use]
22
extern crate clap;
3-
#[macro_use]
4-
extern crate strum_macros;
53

64
#[cfg(target_os = "linux")]
75
use image_backends::ImageBackend;

0 commit comments

Comments
 (0)