Move int-enum as required depedency

This commit is contained in:
2022-05-16 22:41:59 +08:00
parent 63e39f14c0
commit ec5109dd48
2 changed files with 2 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ getopts = "0.2"
gettext = "0.4"
html_parser = "0.6.3"
indicatif = "0.17.0-rc.10"
int-enum = { version = "0.4", optional = true }
int-enum = "0.4"
json = "0.12"
lazy_static = "1.4"
regex = "1"
@@ -35,7 +35,7 @@ cmake = { version = "0.1", optional = true }
[features]
all = ["exif", "ugoira"]
avdict = ["bindgen", "cmake", "flagset"]
exif = ["bindgen", "c_fixed_string", "cmake", "link-cplusplus", "int-enum", "utf16string"]
exif = ["bindgen", "c_fixed_string", "cmake", "link-cplusplus", "utf16string"]
ugoira = ["avdict", "bindgen", "cmake", "link-cplusplus"]
[target.'cfg(windows)'.dependencies]

View File

@@ -9,7 +9,6 @@ extern crate flagset;
extern crate futures_util;
extern crate json;
extern crate indicatif;
#[cfg(feature = "int-enum")]
extern crate int_enum;
#[macro_use]
extern crate lazy_static;