build: Use the 'union' SmallVec feature for minor memory savings

This commit is contained in:
Adrian Wielgosik 2021-11-24 20:11:59 +01:00 committed by Adrian Wielgosik
parent 8ac19e9807
commit f35b2666a3
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ png = { version = "0.17.2" }
ruffle_macros = { path = "macros" }
swf = { path = "../swf" }
bitflags = "1.3.2"
smallvec = "1.7.0"
smallvec = { version = "1.7.0", features = ["union"] }
num-traits = "0.2"
num-derive = "0.3"
quick-xml = { git = "https://github.com/ruffle-rs/quick-xml", rev = "8496365ec1412eb5ba5de350937b6bce352fa0ba" }