Skip to content

Commit 53fe7a4

Browse files
authored
Merge branch 'main' into main
2 parents 79d7955 + 81872f2 commit 53fe7a4

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/security.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- "**/Cargo.lock"
88
jobs:
99
security-audit:
10+
permissions: write-all
1011
runs-on: [self-hosted, Linux, amd64]
1112
steps:
1213
- uses: actions/checkout@v4

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ Cargo.lock
1111
*.profraw
1212
*.profdata
1313
*.svg
14-
*.diff
14+
*.diff
15+
.DS_Store

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "Apache-2.0"
1010
name = "sonic-rs"
1111
readme = "README.md"
1212
repository = "https://github.com/cloudwego/sonic-rs"
13-
version = "0.5.3"
13+
version = "0.5.4"
1414

1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1616

src/pointer/point.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use faststr::FastStr;
44
pub type JsonPointer = [PointerNode];
55

66
/// Represents a node in a json pointer path.
7-
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
7+
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
88
pub enum PointerNode {
99
Key(FastStr),
1010
Index(usize),

0 commit comments

Comments
 (0)