-
-
Notifications
You must be signed in to change notification settings - Fork 791
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'serde-rs:master' into master
- Loading branch information
Showing
55 changed files
with
1,419 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ jobs: | |
with: | ||
name: Cargo.lock | ||
path: Cargo.lock | ||
continue-on-error: true | ||
|
||
windows: | ||
name: Test suite (windows) | ||
|
@@ -95,13 +96,16 @@ jobs: | |
- run: cd serde && cargo build | ||
|
||
derive: | ||
name: Rust 1.56.0 | ||
name: Rust 1.61.0 | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 45 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/[email protected] | ||
- run: sed -i '/"test_suite"/d' Cargo.toml | ||
- uses: dtolnay/[email protected] | ||
- run: | | ||
sed -i 's/proc-macro2 = { workspace = true/proc-macro2 = { version = "1"/' serde_derive*/Cargo.toml | ||
sed -i 's/quote = { workspace = true/quote = { version = "1"/' serde_derive*/Cargo.toml | ||
sed -i 's/syn = { workspace = true/syn = { version = "2"/' serde_derive*/Cargo.toml | ||
- run: cd serde && cargo check --no-default-features | ||
- run: cd serde && cargo check | ||
- run: cd serde_derive && cargo check | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "serde" | ||
version = "1.0.210" | ||
version = "1.0.215" | ||
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"] | ||
build = "build.rs" | ||
categories = ["encoding", "no-std", "no-std::no-alloc"] | ||
|
@@ -37,7 +37,7 @@ rustdoc-args = ["--generate-link-to-definition"] | |
# is compatible with exactly one serde release because the generated code | ||
# involves nonpublic APIs which are not bound by semver. | ||
[target.'cfg(any())'.dependencies] | ||
serde_derive = { version = "=1.0.210", path = "../serde_derive" } | ||
serde_derive = { version = "=1.0.215", path = "../serde_derive" } | ||
|
||
|
||
### FEATURES ################################################################# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.