9 releases

0.2.5 Feb 23, 2024
0.2.4 Feb 4, 2024
0.1.2 Feb 2, 2024

#222 in Procedural macros

Download history 21/week @ 2024-02-02 1/week @ 2024-02-16 120/week @ 2024-02-23 15/week @ 2024-03-01 201/week @ 2024-03-08 63/week @ 2024-03-15 21/week @ 2024-03-22 22/week @ 2024-03-29 10/week @ 2024-04-05

131 downloads per month

MIT license

12KB
117 lines

serde_nested_with

.github/workflows/push.yml .github/workflows/audit.yml License: MIT

This is a small procedural macro that allows you to use serde attributes with a nested module or function. This is useful when you want to use a custom (de)serializer that is defined in a different module or crate.

Installation

cargo add serde_nested_with

Example

mod example {
    use serde::{Deserialize, Serialize};
    use serde_test::{assert_tokens, Token};
    use serde_nested_with::serde_nested;
    use std::collections::HashMap;
    use time::serde::{rfc3339, iso8601};
    use time::OffsetDateTime;

    // Make sure to add the `serde_nested` attribute above the #[derive(...)]! This will allow the
    // macro to modify the #[serde(...)] attributes before serde itself processes them.
    #[serde_nested]
    #[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
    pub struct Foo {
        #[serde_nested(sub = "OffsetDateTime", serde(with = "rfc3339"))]
        pub bar: Option<Option<OffsetDateTime>>,

        // You can add additional attributes to the original field and they will be preserved.
        #[serde(rename = "other")]
        #[serde_nested(
            sub = "OffsetDateTime",
            serde(serialize_with = "iso8601::serialize", deserialize_with = "iso8601::deserialize"),
            // In this instance the substituted field needs to implement additional traits in order
            // to be used as key in a HashMap. We can use the `derive_trait` attribute to add them.
            derive_trait = "PartialEq",
            derive_trait = "Eq",
            derive_trait = "Hash"
        )]
        pub baz: HashMap<OffsetDateTime, OffsetDateTime>
    }
}

Release process

When a SemVer compatible git tag is pushed to the repo a new version of the package will be published to crates.io.

Contributing

Direct push to the main branch is not allowed, any updates require a pull request to be opened. After all status checks pass the PR will be eligible for review and merge.

Commit messages should follow the Conventional Commits specification.

The project comes with an optional pre-configured development container with all the required tools. For more information on how to use it please refer to containers.dev

To make sure your changes match the project style you can install the pre-commit hooks with pre-commit install. This requires pre-commit to be installed on your system.

License

Copyright (c) 2024 Lorenzo Murarotto lnzmrr@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependencies

~0.7–1.2MB
~27K SLoC