Skip to content
Snippets Groups Projects
Commit f5424251a388 authored by ijl's avatar ijl
Browse files

Fix encoding_rs features

parent b4be18c23afd
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment