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:
Paul Wagener 2024-09-01 23:03:37 +02:00 committed by GitHub
parent ce2a50880b
commit c1b61033f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ fake = ["dep:fake"]
sqlite = ["__sqlite-shared", "dep:rusqlite"] sqlite = ["__sqlite-shared", "dep:rusqlite"]
sqlite-bundled = ["__sqlite-shared", "rusqlite/bundled"] 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 # internal
__sqlite-shared = [ __sqlite-shared = [