Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TomzBench/serde-rs.github.io
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: serde-rs/serde-rs.github.io
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 15 commits
  • 42 files changed
  • 4 contributors

Commits on Mar 5, 2025

  1. Document that most enums representations require std or alloc fea…

    …tures
    
    I was happily writing some code that needs to support no_std and no_alloc
    only to find out that it's not possible through the compilation simply
    failing:
    
    ```rust
    error[E0433]: failed to resolve: could not find `ContentRefDeserializer` in `de`
       --> zarlink/src/connection/mod.rs:136:36
        |
    136 |         #[derive(Debug, Serialize, Deserialize)]
        |                                    ^^^^^^^^^^^ could not find `ContentRefDeserializer` in `de`
        |
    note: found an item that was configured out
       --> /home/zeenix/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.218/src/private/de.rs:14:35
        |
    14  |     Content, ContentDeserializer, ContentRefDeserializer, EnumDeserializer,
        |                                   ^^^^^^^^^^^^^^^^^^^^^^
    note: the item is gated here
       --> /home/zeenix/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.218/src/private/de.rs:12:1
        |
    12  | #[cfg(any(feature = "std", feature = "alloc"))]
        | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        = note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)
    
    error[E0412]: cannot find type `Content` in module `_serde::__private::de`
       --> zarlink/src/connection/mod.rs:136:36
        |
    136 |         #[derive(Debug, Serialize, Deserialize)]
        |                                    ^^^^^^^^^^^ not found in `_serde::__private::de`
        |
    note: found an item that was configured out
       --> /home/zeenix/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.218/src/private/de.rs:14:5
        |
    14  |     Content, ContentDeserializer, ContentRefDeserializer, EnumDeserializer,
        |     ^^^^^^^
    note: the item is gated here
       --> /home/zeenix/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.218/src/private/de.rs:12:1
        |
    12  | #[cfg(any(feature = "std", feature = "alloc"))]
        | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        = note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)
    ```
    
    Fixes serde-rs/serde#2668.
    zeenix committed Mar 5, 2025
    Configuration menu
    Copy the full SHA
    6bc9cf1 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2025

  1. Merge pull request serde-rs#179 from zeenix/patch-1

    Document that most enums representations require `std` or `alloc` features
    dtolnay authored Mar 10, 2025
    Configuration menu
    Copy the full SHA
    6af4d0d View commit details
    Browse the repository at this point in the history
  2. Regenerate

    dtolnay committed Mar 10, 2025
    Configuration menu
    Copy the full SHA
    2909dfe View commit details
    Browse the repository at this point in the history
  3. Wrap PR 179 to 80 columns

    dtolnay committed Mar 10, 2025
    Configuration menu
    Copy the full SHA
    6e477e0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2879e94 View commit details
    Browse the repository at this point in the history
  5. Regenerate

    dtolnay committed Mar 10, 2025
    Configuration menu
    Copy the full SHA
    1856343 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2025

  1. JSON now supports no-std

    dtolnay committed Apr 13, 2025
    Configuration menu
    Copy the full SHA
    c6d2059 View commit details
    Browse the repository at this point in the history
  2. Merge pull request serde-rs#182 from serde-rs/jsonnostd

    JSON now supports no-std
    dtolnay authored Apr 13, 2025
    Configuration menu
    Copy the full SHA
    2d95e01 View commit details
    Browse the repository at this point in the history
  3. Regenerate

    dtolnay committed Apr 13, 2025
    Configuration menu
    Copy the full SHA
    93377b1 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2025

  1. Configuration menu
    Copy the full SHA
    19185a8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6589887 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2025

  1. Merge pull request serde-rs#156 from epage/untagged

    Help improve experience with untagged schemas
    oli-obk authored May 18, 2025
    Configuration menu
    Copy the full SHA
    3668e63 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2025

  1. Wrap PR 156 to 80 columns

    dtolnay committed May 20, 2025
    Configuration menu
    Copy the full SHA
    487b821 View commit details
    Browse the repository at this point in the history
  2. Re-word PR 156

    dtolnay committed May 20, 2025
    Configuration menu
    Copy the full SHA
    31cbd28 View commit details
    Browse the repository at this point in the history
  3. Regenerate

    dtolnay committed May 20, 2025
    Configuration menu
    Copy the full SHA
    9dfa6df View commit details
    Browse the repository at this point in the history
Loading