-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix src/model/item.rs
#92
Conversation
Changed dependanbot target branch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! Have you noticed any other parsing errors we might have missed?
I don't think so |
fix |
src/model/item.rs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix src/model/item.rs
@pxp9 meant to fix the file, not changing the PR name bahahahaha. |
sure lol sorry, working on it :P |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comments
src/model/item.rs
Outdated
Some(true) => "true".to_string(), | ||
Some(false) => "false".to_string(), | ||
None => "None".to_string(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably don't need the toString here. Also these kind of "utils" methods should not go in a class, the should be shared across the project, something like src/lib/utils.rs/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so should I create src/lib/utils.rs
since there is none ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeap
You should match the value like this: Some(val) => val.to_string()
None => "None".to_string() |
normally it's now good and all running |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, nice job!
Thank you :) getting the hang of it now :D |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm
* chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0 Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version. - [Release notes](https://github.com/daniel7grant/redis-macros/releases) - [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md) - [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0) --- updated-dependencies: - dependency-name: redis-macros dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * ci(actions): bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix `src/model/item.rs` (#92) * Moved vinted-db-feeder as submodule * Fix/advanced item test (#98) * Updated item JSON * Upgraded testing quality * Storing test results in /output * Added more new JSON fields * Using lazy_static for logging * Updated namespace for debug * Removed lazy initialization * Fixed clippy * Added new SerdeError * fixed clippy * Bump v0.9.0 * chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93) Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96) --- updated-dependencies: - dependency-name: typed-builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * Updated CHANGELOG * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94) * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version. - [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md) - [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0) --- updated-dependencies: - dependency-name: reqwest_cookie_store dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fix reqwest version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * fix method naming * Removed unnecessary @staticmethod tag --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baptiste Zahnow <[email protected]>
…ted-db-feeder (#109) * chore(deps): bump tqdm from 4.62.3 to 4.66.3 in /examples/filter_example (#95) Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.62.3 to 4.66.3. - [Release notes](https://github.com/tqdm/tqdm/releases) - [Commits](tqdm/tqdm@v4.62.3...v4.66.3) --- updated-dependencies: - dependency-name: tqdm dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * v0.9.0 (#97) * chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0 Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version. - [Release notes](https://github.com/daniel7grant/redis-macros/releases) - [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md) - [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0) --- updated-dependencies: - dependency-name: redis-macros dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * ci(actions): bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix `src/model/item.rs` (#92) * Moved vinted-db-feeder as submodule * Fix/advanced item test (#98) * Updated item JSON * Upgraded testing quality * Storing test results in /output * Added more new JSON fields * Using lazy_static for logging * Updated namespace for debug * Removed lazy initialization * Fixed clippy * Added new SerdeError * fixed clippy * Bump v0.9.0 * chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93) Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96) --- updated-dependencies: - dependency-name: typed-builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * Updated CHANGELOG * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94) * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version. - [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md) - [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0) --- updated-dependencies: - dependency-name: reqwest_cookie_store dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fix reqwest version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * fix method naming * Removed unnecessary @staticmethod tag --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baptiste Zahnow <[email protected]> * chore(deps): bump certifi in /scrapping/vinted-db-feeder Bumps [certifi](https://github.com/certifi/python-certifi) from 2023.5.7 to 2024.7.4. - [Commits](certifi/python-certifi@2023.05.07...2024.07.04) --- updated-dependencies: - dependency-name: certifi dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Alvaro Cabo <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baptiste Zahnow <[email protected]>
* chore(deps): bump tqdm from 4.62.3 to 4.66.3 in /examples/filter_example (#95) Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.62.3 to 4.66.3. - [Release notes](https://github.com/tqdm/tqdm/releases) - [Commits](tqdm/tqdm@v4.62.3...v4.66.3) --- updated-dependencies: - dependency-name: tqdm dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * v0.9.0 (#97) * chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0 Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version. - [Release notes](https://github.com/daniel7grant/redis-macros/releases) - [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md) - [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0) --- updated-dependencies: - dependency-name: redis-macros dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * ci(actions): bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix `src/model/item.rs` (#92) * Moved vinted-db-feeder as submodule * Fix/advanced item test (#98) * Updated item JSON * Upgraded testing quality * Storing test results in /output * Added more new JSON fields * Using lazy_static for logging * Updated namespace for debug * Removed lazy initialization * Fixed clippy * Added new SerdeError * fixed clippy * Bump v0.9.0 * chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93) Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96) --- updated-dependencies: - dependency-name: typed-builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * Updated CHANGELOG * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94) * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version. - [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md) - [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0) --- updated-dependencies: - dependency-name: reqwest_cookie_store dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fix reqwest version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * fix method naming * Removed unnecessary @staticmethod tag --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baptiste Zahnow <[email protected]> * chore(cargo): update redis requirement from 0.25.4 to 0.27.2 Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](redis-rs/redis-rs@redis-0.25.4...redis-0.27.2) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fixed redis-macros version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Alvaro Cabo <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baptiste Zahnow <[email protected]>
* chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0 Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version. - [Release notes](https://github.com/daniel7grant/redis-macros/releases) - [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md) - [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0) --- updated-dependencies: - dependency-name: redis-macros dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * ci(actions): bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix `src/model/item.rs` (#92) * Moved vinted-db-feeder as submodule * Fix/advanced item test (#98) * Updated item JSON * Upgraded testing quality * Storing test results in /output * Added more new JSON fields * Using lazy_static for logging * Updated namespace for debug * Removed lazy initialization * Fixed clippy * Added new SerdeError * fixed clippy * Bump v0.9.0 * chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93) Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96) --- updated-dependencies: - dependency-name: typed-builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * Updated CHANGELOG * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94) * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version. - [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md) - [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0) --- updated-dependencies: - dependency-name: reqwest_cookie_store dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fix reqwest version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * fix method naming * Removed unnecessary @staticmethod tag * chore(deps): bump certifi from 2023.5.7 to 2024.7.4 in /scrapping/vinted-db-feeder (#109) * chore(deps): bump tqdm from 4.62.3 to 4.66.3 in /examples/filter_example (#95) Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.62.3 to 4.66.3. - [Release notes](https://github.com/tqdm/tqdm/releases) - [Commits](tqdm/tqdm@v4.62.3...v4.66.3) --- updated-dependencies: - dependency-name: tqdm dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * v0.9.0 (#97) * chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0 Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version. - [Release notes](https://github.com/daniel7grant/redis-macros/releases) - [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md) - [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0) --- updated-dependencies: - dependency-name: redis-macros dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * ci(actions): bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix `src/model/item.rs` (#92) * Moved vinted-db-feeder as submodule * Fix/advanced item test (#98) * Updated item JSON * Upgraded testing quality * Storing test results in /output * Added more new JSON fields * Using lazy_static for logging * Updated namespace for debug * Removed lazy initialization * Fixed clippy * Added new SerdeError * fixed clippy * Bump v0.9.0 * chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93) Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96) --- updated-dependencies: - dependency-name: typed-builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * Updated CHANGELOG * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94) * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version. - [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md) - [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0) --- updated-dependencies: - dependency-name: reqwest_cookie_store dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fix reqwest version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * fix method naming * Removed unnecessary @staticmethod tag --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baptiste Zahnow <[email protected]> * chore(deps): bump certifi in /scrapping/vinted-db-feeder Bumps [certifi](https://github.com/certifi/python-certifi) from 2023.5.7 to 2024.7.4. - [Commits](certifi/python-certifi@2023.05.07...2024.07.04) --- updated-dependencies: - dependency-name: certifi dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Alvaro Cabo <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baptiste Zahnow <[email protected]> * chore(cargo): update typed-builder requirement from 0.19 to 0.20 (#105) --- updated-dependencies: - dependency-name: typed-builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(cargo): update redis requirement from 0.25.4 to 0.27.2 (#108) * chore(deps): bump tqdm from 4.62.3 to 4.66.3 in /examples/filter_example (#95) Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.62.3 to 4.66.3. - [Release notes](https://github.com/tqdm/tqdm/releases) - [Commits](tqdm/tqdm@v4.62.3...v4.66.3) --- updated-dependencies: - dependency-name: tqdm dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * v0.9.0 (#97) * chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0 Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version. - [Release notes](https://github.com/daniel7grant/redis-macros/releases) - [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md) - [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0) --- updated-dependencies: - dependency-name: redis-macros dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * ci(actions): bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix `src/model/item.rs` (#92) * Moved vinted-db-feeder as submodule * Fix/advanced item test (#98) * Updated item JSON * Upgraded testing quality * Storing test results in /output * Added more new JSON fields * Using lazy_static for logging * Updated namespace for debug * Removed lazy initialization * Fixed clippy * Added new SerdeError * fixed clippy * Bump v0.9.0 * chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93) Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96) --- updated-dependencies: - dependency-name: typed-builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * Updated CHANGELOG * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94) * chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version. - [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md) - [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0) --- updated-dependencies: - dependency-name: reqwest_cookie_store dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fix reqwest version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Álvaro Cabo Ciudad <[email protected]> * fix method naming * Removed unnecessary @staticmethod tag --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baptiste Zahnow <[email protected]> * chore(cargo): update redis requirement from 0.25.4 to 0.27.2 Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](redis-rs/redis-rs@redis-0.25.4...redis-0.27.2) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fixed redis-macros version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Alvaro Cabo <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baptiste Zahnow <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baptiste Zahnow <[email protected]>
I got this Error:
to fix this issue, I did what @0xCAB0 said, which was changing https://github.com/ThalosES/vinted-rs/blob/main/src/model/item.rs#L131-L146 to be Option<_>