Skip to content

Commit

Permalink
bump 0.3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
liuq19 committed Aug 29, 2024
1 parent 56bda9d commit 13e52f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sonic-rs"
version = "0.3.11"
version = "0.3.12"
authors = ["Volo Team <[email protected]>"]
edition = "2021"
description = "Sonic-rs is a fast Rust JSON library based on SIMD"
Expand Down
5 changes: 4 additions & 1 deletion src/value/ser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ mod test {

use serde::{Deserialize, Serialize};

use crate::{to_value, JsonValueTrait, Value};
use crate::{to_value, Value};

#[derive(Debug, serde::Serialize, Hash, Default, Eq, PartialEq)]
struct User {
Expand Down Expand Up @@ -836,7 +836,10 @@ mod test {
}

#[test]
#[cfg(not(feature = "arbitrary_precision"))]
fn test_to_value2() {
use crate::prelude::*;

let mut value = Value::default();

let args = CommonArgs {
Expand Down

0 comments on commit 13e52f0

Please sign in to comment.