Skip to content

Commit

Permalink
Merge pull request #751 from Stremio/chore/preserve-order-and-bump-msrv
Browse files Browse the repository at this point in the history
chore(stremio-core-web): enable serde_json preserve_order features:
  • Loading branch information
elpiel authored Dec 11, 2024
2 parents ef64789 + 7785edd commit 7c8f10a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
cancel-in-progress: true

env:
RUST_MSRV_VERSION: '1.70'
RUST_MSRV_VERSION: '1.71'

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Smart Code OOD"]
edition = "2021"

# When upgrading MSRV make sure to update the msrv.yaml workflow
rust-version = "1.70"
rust-version = "1.71"

[profile.release]
lto = true
Expand Down
2 changes: 1 addition & 1 deletion stremio-core-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ log-trace = []
stremio-core = { version = "0.1", features = ["derive", "analytics"], path = "../" }

serde = { version = "1.0.*", features = ["derive"] }
serde_json = "1.0.*"
serde_json = { version = "1", features = ["preserve_order"] }
futures = "0.3.*"

# used for Env impl
Expand Down

0 comments on commit 7c8f10a

Please sign in to comment.