-
- Downloads
Fix encoding_rs features
... | @@ -51,7 +51,7 @@ | ... | @@ -51,7 +51,7 @@ |
[dependencies] | [dependencies] | ||
associative-cache = { version = "1" } | associative-cache = { version = "1" } | ||
bytecount = { path = "./bytecount", default_features = false, features = ["generic-simd", "runtime-dispatch-simd"] } | bytecount = { path = "./bytecount", default_features = false, features = ["generic-simd", "runtime-dispatch-simd"] } | ||
encoding_rs = { path = "./encoding_rs", default_features = false, features = ["simd-accel"] } | encoding_rs = { path = "./encoding_rs", default_features = false } | ||
inlinable_string = { version = "0.1" } | inlinable_string = { version = "0.1" } | ||
itoa = { version = "0.4", default_features = false } | itoa = { version = "0.4", default_features = false } | ||
once_cell = { version = "1", default_features = false } | once_cell = { version = "1", default_features = false } | ||
... | @@ -62,8 +62,8 @@ | ... | @@ -62,8 +62,8 @@ |
smallvec = { version = "1", default_features = false, features = ["const_generics", "union", "specialization", "write"] } | smallvec = { version = "1", default_features = false, features = ["const_generics", "union", "specialization", "write"] } | ||
wy = { version = "1" } | wy = { version = "1" } | ||
[target.'cfg(not(any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "i686", target_arch = "armv7")))'.dependencies] | [target.'cfg(any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "i686", target_arch = "armv7"))'.dependencies] | ||
encoding_rs = { path = "./encoding_rs", default_features = false } | encoding_rs = { path = "./encoding_rs", default_features = false, features = ["simd-accel"] } | ||
[profile.release] | [profile.release] | ||
codegen-units = 1 | codegen-units = 1 | ||
... | ... |
Please register or sign in to comment