Conversation
Signed-off-by: Luo Jian <crackedpoly@outlook.com>
Signed-off-by: Luo Jian <crackedpoly@outlook.com>
Signed-off-by: Luo Jian <crackedpoly@outlook.com>
Signed-off-by: Luo Jian <crackedpoly@outlook.com>
Signed-off-by: Luo Jian <crackedpoly@outlook.com>
Signed-off-by: Luo Jian <crackedpoly@outlook.com>
Updates the requirements on [peak_alloc](https://github.com/xgillard/peak_alloc) to permit the latest version. - [Commits](xgillard/peak_alloc@v0.2.0...v0.3.0) --- updated-dependencies: - dependency-name: peak_alloc dependency-version: 0.3.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Updates the requirements on [phf_codegen](https://github.com/rust-phf/rust-phf) to permit the latest version. - [Release notes](https://github.com/rust-phf/rust-phf/releases) - [Changelog](https://github.com/rust-phf/rust-phf/blob/main/RELEASE_PROCESS.md) - [Commits](rust-phf/rust-phf@phf_codegen-v0.11.1...v0.13.1) --- updated-dependencies: - dependency-name: phf_codegen dependency-version: 0.13.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Updates the requirements on [phf](https://github.com/rust-phf/rust-phf) to permit the latest version. - [Release notes](https://github.com/rust-phf/rust-phf/releases) - [Changelog](https://github.com/rust-phf/rust-phf/blob/main/RELEASE_PROCESS.md) - [Commits](rust-phf/rust-phf@phf-v0.11.1...v0.13.1) --- updated-dependencies: - dependency-name: phf dependency-version: 0.13.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Updates the requirements on [oxidd](https://github.com/OxiDD/oxidd) to permit the latest version. - [Commits](OxiDD/oxidd@v0.10.0...v0.11.0) --- updated-dependencies: - dependency-name: oxidd dependency-version: 0.11.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Luo Jian <crackedpoly@outlook.com>
Signed-off-by: Luo Jian <crackedpoly@outlook.com>
…oc-0.3.0 chore(deps): update peak_alloc requirement from 0.2.0 to 0.3.0
…/actions/checkout-5 chore(deps): bump actions/checkout from 4 to 5
…gen-0.13.1 chore(deps): update phf_codegen requirement from 0.11.1 to 0.13.1
…/actions/upload-pages-artifact-4 chore(deps): bump actions/upload-pages-artifact from 3 to 4
…11.0 chore(deps): update oxidd requirement from 0.10.0 to 0.11.0
…/actions/upload-artifact-5 chore(deps): bump actions/upload-artifact from 4 to 5
…/actions/download-artifact-6 chore(deps): bump actions/download-artifact from 4 to 6
Signed-off-by: Jian Luo <crackedpoly@outlook.com>
chore(deps): update phf requirement from 0.11 to 0.13
|
Caution Review failedThe pull request is closed. WalkthroughThis PR introduces an optional Changes
Sequence DiagramssequenceDiagram
participant Code
participant Lookup
rect rgb(220, 240, 255)
Note over Code,Lookup: OLD: Trait-based (FamilyDecl)
Code->>Lookup: MatchFamily::get_field_declaration(name)
Lookup->>Lookup: GLOBAL_FAMILY.get_field_declaration(name)
Lookup-->>Code: Option<FieldDeclaration>
end
rect rgb(220, 255, 230)
Note over Code,Lookup: NEW: Function-based
Code->>Lookup: constant::get_field_declaration(name)
Lookup-->>Code: Option<FieldDeclaration>
end
sequenceDiagram
participant Crate
participant Feature
participant Types
rect rgb(240, 230, 255)
Note over Crate,Types: arc feature DISABLED
Crate->>Feature: Check arc feature
Feature-->>Types: Use std::rc::Rc
Types->>Types: Rc<T> (single-threaded)
end
rect rgb(255, 240, 230)
Note over Crate,Types: arc feature ENABLED
Crate->>Feature: Check arc feature
Feature-->>Types: Use std::sync::Arc as Rc
Types->>Types: Arc<T> (thread-safe)
end
Estimated code review effort🎯 4 (Complex) | ⏱️ ~50 minutes Areas requiring extra attention:
Possibly related PRs
Poem
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (41)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Regular release
Summary by CodeRabbit
Release Notes
New Features
Bug Fixes
Dependencies
Documentation