Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ cfg-if = "1.0"
faststr = { version = "0.2", features = ["serde"] }
itoa = "1.0"
ref-cast = "1.0"
zmij = "0.1"
serde = { version = "1.0", features = ["rc", "derive"] }
simdutf8 = "0.1"
sonic-number = { path = "./sonic-number", version = "0.1" }
sonic-simd = { path = "./sonic-simd", version = "0.1" }
thiserror = "2.0"
zmij = "1.0"

[dev-dependencies]
bytes = { version = "1.4", features = ["serde"] }
Expand All @@ -42,7 +42,7 @@ serde_json = { version = "1.0", features = ["float_roundtrip", "raw_value"] }
[features]
default = []

# Use an arbitrary precision number type representation when parsing JSON into `sonic_rs::Value`.
# Use an arbitrary precision number type representation when parsing JSON into `sonic_rs::Value`.
# This allows the JSON numbers will be serialized without loss of precision.
arbitrary_precision = []

Expand Down
3 changes: 2 additions & 1 deletion sonic-simd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ repository = "https://github.com/cloudwego/sonic-rs"
version = "0.1.2"

[features]
avx512 = [] # enable avx512, requires Rust 1.89 or later, and also enable `avx512f` target feature
# enable avx512, requires Rust 1.89 or later, and also enable `avx512f` target feature
avx512 = []

[dependencies]
cfg-if = "1.0"
Loading