mirror of https://github.com/tracel-ai/burn.git
Fix compile for dataset crate with vision feature (#2228)
This fixes the compile error when burn is compiled with only the `dataset` and `vision` feature enabled burn = { default-features = false, features = ["dataset", "vision"] }
This commit is contained in:
parent
ce2a50880b
commit
c1b61033f4
|
@ -21,7 +21,7 @@ fake = ["dep:fake"]
|
|||
sqlite = ["__sqlite-shared", "dep:rusqlite"]
|
||||
sqlite-bundled = ["__sqlite-shared", "rusqlite/bundled"]
|
||||
|
||||
vision = ["dep:flate2", "dep:globwalk", "dep:burn-common"]
|
||||
vision = ["dep:flate2", "dep:globwalk", "dep:burn-common", "dep:image"]
|
||||
|
||||
# internal
|
||||
__sqlite-shared = [
|
||||
|
|
Loading…
Reference in New Issue