Commit Graph

816 Commits

Author SHA1 Message Date
Jerus Bot
de5b96c7fc chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 11:24:04 +00:00
Jeremiah Russell
a20ba1cd52 fix: write README to crate dir for cargo package (#175)
## Summary

- `release-hook.sh` was writing README only to `../../README.md`
(workspace root)
- `Cargo.toml` has `readme = "README.md"` which cargo-release resolves
relative to the crate directory (`crates/cull-gmail/README.md`)
- cargo-release failed with "readme does not appear to exist"

Fix: write README to `README.md` (crate directory) first, then copy to
`../../README.md` for GitHub display.

## Test plan

- [ ] CI validation passes
- [ ] Release pipeline succeeds (README found at crate level)

🤖 Generated with [Claude Code](https://claude.com/claude-code)
2026-03-13 11:23:52 +00:00
Jeremiah Russell
135fb1abbc Merge branch 'main' into fix/readme-path 2026-03-13 11:22:17 +00:00
Jeremiah Russell
a0ca55df71 fix: write README to crate dir for cargo package
Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-03-13 11:19:30 +00:00
Jerus Bot
50d16434ee chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 11:01:35 +00:00
Jeremiah Russell
56782a905e fix(deps): update rust crate tokio to 1.50.0 (#174)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [tokio](https://tokio.rs)
([source](https://redirect.github.com/tokio-rs/tokio)) |
workspace.dependencies | minor | `1.49.0` → `1.50.0` |

---

### Release Notes

<details>
<summary>tokio-rs/tokio (tokio)</summary>

###
[`v1.50.0`](https://redirect.github.com/tokio-rs/tokio/releases/tag/tokio-1.50.0):
Tokio v1.50.0

[Compare
Source](https://redirect.github.com/tokio-rs/tokio/compare/tokio-1.49.0...tokio-1.50.0)

### 1.50.0 (Mar 3rd, 2026)

##### Added

- net: add `TcpStream::set_zero_linger` ([#&#8203;7837])
- rt: add `is_rt_shutdown_err` ([#&#8203;7771])

##### Changed

- io: add optimizer hint that `memchr` returns in-bounds pointer
([#&#8203;7792])
- io: implement vectored writes for `write_buf` ([#&#8203;7871])
- runtime: panic when `event_interval` is set to 0 ([#&#8203;7838])
- runtime: shorten default thread name to fit in Linux limit
([#&#8203;7880])
- signal: remember the result of `SetConsoleCtrlHandler`
([#&#8203;7833])
- signal: specialize windows `Registry` ([#&#8203;7885])

##### Fixed

- io: always cleanup `AsyncFd` registration list on deregister
([#&#8203;7773])
- macros: remove (most) local `use` declarations in `tokio::select!`
([#&#8203;7929])
- net: fix `GET_BUF_SIZE` constant for `target_os = "android"`
([#&#8203;7889])
- runtime: avoid redundant unpark in current\_thread scheduler
([#&#8203;7834])
- runtime: don't park in `current_thread` if `before_park` defers waker
([#&#8203;7835])
- io: fix write readiness on ESP32 on short writes ([#&#8203;7872])
- runtime: wake deferred tasks before entering `block_in_place`
([#&#8203;7879])
- sync: drop rx waker when oneshot receiver is dropped ([#&#8203;7886])
- runtime: fix double increment of `num_idle_threads` on shutdown
([#&#8203;7910], [#&#8203;7918], [#&#8203;7922])

##### Unstable

- fs: check for io-uring opcode support ([#&#8203;7815])
- runtime: avoid lock acquisition after uring init ([#&#8203;7850])

##### Documented

- docs: update outdated unstable features section ([#&#8203;7839])
- io: clarify the behavior of `AsyncWriteExt::shutdown()`
([#&#8203;7908])
- io: explain how to flush stdout/stderr ([#&#8203;7904])
- io: fix incorrect and confusing `AsyncWrite` documentation
([#&#8203;7875])
- rt: clarify the documentation of `Runtime::spawn` ([#&#8203;7803])
- rt: fix missing quotation in docs ([#&#8203;7925])
- runtime: correct the default thread name in docs ([#&#8203;7896])
- runtime: fix `event_interval` doc ([#&#8203;7932])
- sync: clarify RwLock fairness documentation ([#&#8203;7919])
- sync: clarify that `recv` returns `None` once closed and no more
messages ([#&#8203;7920])
- task: clarify when to use `spawn_blocking` vs dedicated threads
([#&#8203;7923])
- task: doc that task drops before `JoinHandle` completion
([#&#8203;7825])
- signal: guarantee that listeners never return `None` ([#&#8203;7869])
- task: fix task module feature flags in docs ([#&#8203;7891])
- task: fix two typos ([#&#8203;7913])
- task: improve the docs of `Builder::spawn_local` ([#&#8203;7828])
- time: add docs about auto-advance and when to use sleep
([#&#8203;7858])
- util: fix typo in docs ([#&#8203;7926])

[#&#8203;7771]: https://redirect.github.com/tokio-rs/tokio/pull/7771

[#&#8203;7773]: https://redirect.github.com/tokio-rs/tokio/pull/7773

[#&#8203;7792]: https://redirect.github.com/tokio-rs/tokio/pull/7792

[#&#8203;7803]: https://redirect.github.com/tokio-rs/tokio/pull/7803

[#&#8203;7815]: https://redirect.github.com/tokio-rs/tokio/pull/7815

[#&#8203;7825]: https://redirect.github.com/tokio-rs/tokio/pull/7825

[#&#8203;7828]: https://redirect.github.com/tokio-rs/tokio/pull/7828

[#&#8203;7833]: https://redirect.github.com/tokio-rs/tokio/pull/7833

[#&#8203;7834]: https://redirect.github.com/tokio-rs/tokio/pull/7834

[#&#8203;7835]: https://redirect.github.com/tokio-rs/tokio/pull/7835

[#&#8203;7837]: https://redirect.github.com/tokio-rs/tokio/pull/7837

[#&#8203;7838]: https://redirect.github.com/tokio-rs/tokio/pull/7838

[#&#8203;7839]: https://redirect.github.com/tokio-rs/tokio/pull/7839

[#&#8203;7850]: https://redirect.github.com/tokio-rs/tokio/pull/7850

[#&#8203;7858]: https://redirect.github.com/tokio-rs/tokio/pull/7858

[#&#8203;7869]: https://redirect.github.com/tokio-rs/tokio/pull/7869

[#&#8203;7871]: https://redirect.github.com/tokio-rs/tokio/pull/7871

[#&#8203;7872]: https://redirect.github.com/tokio-rs/tokio/pull/7872

[#&#8203;7875]: https://redirect.github.com/tokio-rs/tokio/pull/7875

[#&#8203;7879]: https://redirect.github.com/tokio-rs/tokio/pull/7879

[#&#8203;7880]: https://redirect.github.com/tokio-rs/tokio/pull/7880

[#&#8203;7885]: https://redirect.github.com/tokio-rs/tokio/pull/7885

[#&#8203;7886]: https://redirect.github.com/tokio-rs/tokio/pull/7886

[#&#8203;7889]: https://redirect.github.com/tokio-rs/tokio/pull/7889

[#&#8203;7891]: https://redirect.github.com/tokio-rs/tokio/pull/7891

[#&#8203;7896]: https://redirect.github.com/tokio-rs/tokio/pull/7896

[#&#8203;7904]: https://redirect.github.com/tokio-rs/tokio/pull/7904

[#&#8203;7908]: https://redirect.github.com/tokio-rs/tokio/pull/7908

[#&#8203;7910]: https://redirect.github.com/tokio-rs/tokio/pull/7910

[#&#8203;7913]: https://redirect.github.com/tokio-rs/tokio/pull/7913

[#&#8203;7918]: https://redirect.github.com/tokio-rs/tokio/pull/7918

[#&#8203;7919]: https://redirect.github.com/tokio-rs/tokio/pull/7919

[#&#8203;7920]: https://redirect.github.com/tokio-rs/tokio/pull/7920

[#&#8203;7922]: https://redirect.github.com/tokio-rs/tokio/pull/7922

[#&#8203;7923]: https://redirect.github.com/tokio-rs/tokio/pull/7923

[#&#8203;7925]: https://redirect.github.com/tokio-rs/tokio/pull/7925

[#&#8203;7926]: https://redirect.github.com/tokio-rs/tokio/pull/7926

[#&#8203;7929]: https://redirect.github.com/tokio-rs/tokio/pull/7929

[#&#8203;7932]: https://redirect.github.com/tokio-rs/tokio/pull/7932

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day
24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/jerus-org/cull-gmail).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41OS4wIiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2026-03-13 11:01:17 +00:00
renovate[bot]
57050e4415 fix(deps): update rust crate tokio to 1.50.0 2026-03-13 10:58:07 +00:00
Jerus Bot
4abc767da4 chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 10:57:07 +00:00
Jeremiah Russell
e59e111ae7 fix(deps): update rust crate tempfile to 3.27.0 (#173)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [tempfile](https://stebalien.com/projects/tempfile-rs/)
([source](https://redirect.github.com/Stebalien/tempfile)) |
workspace.dependencies | minor | `3.25.0` → `3.27.0` |

---

### Release Notes

<details>
<summary>Stebalien/tempfile (tempfile)</summary>

###
[`v3.27.0`](https://redirect.github.com/Stebalien/tempfile/blob/HEAD/CHANGELOG.md#3270)

[Compare
Source](https://redirect.github.com/Stebalien/tempfile/compare/v3.26.0...v3.27.0)

This release adds `TempPath::try_from_path` and deprecates
`TempPath::from_path`.

Prior to this release, `TempPath::from_path` made no attempts to convert
relative paths into absolute paths. The following code would have
deleted the wrong file:

```rust
let tmp_path = TempPath::from_path("foo")
std::env::set_current_dir("/some/other/path").unwrap();
drop(tmp_path);
```

Now:

1. `TempPath::from_path` will attempt to convert relative paths into
absolute paths. However, this isn't always possible as we need to call
`std::env::current_dir`, which can fail. If we fail to convert the
relative path to an absolute path, we simply keep the relative path.
2. The `TempPath::try_from_path` behaves exactly like
`TempPath::from_path`, except that it returns an error if we fail to
convert a relative path into an absolute path (or if the passed path is
empty).

Neither function attempt to verify the existence of the file in
question.

Thanks to [@&#8203;meng-xu-cs](https://redirect.github.com/meng-xu-cs)
for reporting this issue.

###
[`v3.26.0`](https://redirect.github.com/Stebalien/tempfile/blob/HEAD/CHANGELOG.md#3260)

- Support `NamedTempFile::persist` on RedoxOS
([#&#8203;393](https://redirect.github.com/Stebalien/tempfile/issues/393))
(thanks to
[@&#8203;Andy-Python-Programmer](https://redirect.github.com/Andy-Python-Programmer)).

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day
24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/jerus-org/cull-gmail).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41OS4wIiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2026-03-13 10:56:50 +00:00
renovate[bot]
f37b5dea14 fix(deps): update rust crate tempfile to 3.27.0 2026-03-13 10:51:28 +00:00
Jerus Bot
77b4b0f759 chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 10:50:26 +00:00
Jeremiah Russell
82a7d7efd5 fix(deps): update rust crate assert_cmd to 2.2.0 (#172)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [assert_cmd](https://redirect.github.com/assert-rs/assert_cmd) |
workspace.dependencies | minor | `2.1.2` → `2.2.0` |

---

### Release Notes

<details>
<summary>assert-rs/assert_cmd (assert_cmd)</summary>

###
[`v2.2.0`](https://redirect.github.com/assert-rs/assert_cmd/blob/HEAD/CHANGELOG.md#220---2026-03-10)

[Compare
Source](https://redirect.github.com/assert-rs/assert_cmd/compare/v2.1.3...v2.2.0)

##### Compatibility

- Change `cargo_bin` bad paths to panics

###
[`v2.1.3`](https://redirect.github.com/assert-rs/assert_cmd/blob/HEAD/CHANGELOG.md#213---2026-03-10)

[Compare
Source](https://redirect.github.com/assert-rs/assert_cmd/compare/v2.1.2...v2.1.3)

##### Fixes

- Un-deprecate `cargo_bin`

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day
24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/jerus-org/cull-gmail).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41OS4wIiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2026-03-13 10:49:35 +00:00
renovate[bot]
8b2cd42676 fix(deps): update rust crate assert_cmd to 2.2.0 2026-03-13 10:01:12 +00:00
Jerus Bot
cc835fa9e1 chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 09:59:58 +00:00
Jeremiah Russell
a3acd27f51 fix(deps): update rust crate toml to 1.0.6 (#169)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [toml](https://redirect.github.com/toml-rs/toml) |
workspace.dependencies | patch | `1.0.0` → `1.0.6` |

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day
24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/jerus-org/cull-gmail).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNi41IiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2026-03-13 09:59:43 +00:00
renovate[bot]
ed76cb8777 fix(deps): update rust crate toml to 1.0.6 2026-03-13 09:58:15 +00:00
Jerus Bot
b1c1ac52e5 chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 09:47:31 +00:00
Jeremiah Russell
d5386159fa fix(deps): update rust crate indicatif to 0.18.4 (#168)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [indicatif](https://redirect.github.com/console-rs/indicatif) |
workspace.dependencies | patch | `0.18.3` → `0.18.4` |

---

### Release Notes

<details>
<summary>console-rs/indicatif (indicatif)</summary>

###
[`v0.18.4`](https://redirect.github.com/console-rs/indicatif/releases/tag/0.18.4)

[Compare
Source](https://redirect.github.com/console-rs/indicatif/compare/0.18.3...0.18.4)

#### What's Changed

- initial draft oft hold\_max with heuristic by
[@&#8203;djugei](https://redirect.github.com/djugei) in
[#&#8203;657](https://redirect.github.com/console-rs/indicatif/pull/657)
- Fix duration after finish by
[@&#8203;luolong](https://redirect.github.com/luolong) in
[#&#8203;748](https://redirect.github.com/console-rs/indicatif/pull/748)
- Add refresh rate warning for ProgressDrawTarget::term\_like() by
[@&#8203;djc](https://redirect.github.com/djc) in
[#&#8203;750](https://redirect.github.com/console-rs/indicatif/pull/750)
- Seeking heuristic tweaks by
[@&#8203;djc](https://redirect.github.com/djc) in
[#&#8203;751](https://redirect.github.com/console-rs/indicatif/pull/751)
- Expose the current tab width by
[@&#8203;alexisfontaine](https://redirect.github.com/alexisfontaine) in
[#&#8203;754](https://redirect.github.com/console-rs/indicatif/pull/754)
- Make WASM support optional via a feature flag by
[@&#8203;SvenFinn](https://redirect.github.com/SvenFinn) in
[#&#8203;761](https://redirect.github.com/console-rs/indicatif/pull/761)
- fix: respect NO\_COLOR and TERM=dumb environment variables by
[@&#8203;shaanmajid](https://redirect.github.com/shaanmajid) in
[#&#8203;764](https://redirect.github.com/console-rs/indicatif/pull/764)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day
24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/jerus-org/cull-gmail).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNi41IiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2026-03-13 09:47:23 +00:00
renovate[bot]
99af85dbdf fix(deps): update rust crate indicatif to 0.18.4 2026-03-13 09:45:49 +00:00
Jerus Bot
522b09f7df chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 09:44:49 +00:00
Jeremiah Russell
a812f70545 fix(deps): update rust crate futures to 0.3.32 (#167)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [futures](https://rust-lang.github.io/futures-rs)
([source](https://redirect.github.com/rust-lang/futures-rs)) |
workspace.dependencies | patch | `0.3.31` → `0.3.32` |

---

### Release Notes

<details>
<summary>rust-lang/futures-rs (futures)</summary>

###
[`v0.3.32`](https://redirect.github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0332---2026-02-15)

[Compare
Source](https://redirect.github.com/rust-lang/futures-rs/compare/0.3.31...0.3.32)

- Bump MSRV of utility crates to 1.71.
([#&#8203;2989](https://redirect.github.com/rust-lang/futures-rs/issues/2989))
- Soft-deprecate `ready!` macro in favor of `std::task::ready!` added in
Rust 1.64
([#&#8203;2925](https://redirect.github.com/rust-lang/futures-rs/issues/2925))
- Soft-deprecate `pin_mut!` macro in favor of `std::pin::pin!` added in
Rust 1.68
([#&#8203;2929](https://redirect.github.com/rust-lang/futures-rs/issues/2929))
- Add `FuturesOrdered::clear`
([#&#8203;2927](https://redirect.github.com/rust-lang/futures-rs/issues/2927))
- Add `mpsc::*Receiver::recv`
([#&#8203;2947](https://redirect.github.com/rust-lang/futures-rs/issues/2947))
- Add `mpsc::*Receiver::try_recv` and deprecate
`mpsc::*Receiver::::try_next`
([#&#8203;2944](https://redirect.github.com/rust-lang/futures-rs/issues/2944))
- Implement `FusedStream` for `sink::With`
([#&#8203;2948](https://redirect.github.com/rust-lang/futures-rs/issues/2948))
- Add `no_std` support for `shared`
([#&#8203;2868](https://redirect.github.com/rust-lang/futures-rs/issues/2868))
- Make `Mutex::new()` const
([#&#8203;2956](https://redirect.github.com/rust-lang/futures-rs/issues/2956))
- Add `#[clippy::has_significant_drop]` to guards
([#&#8203;2967](https://redirect.github.com/rust-lang/futures-rs/issues/2967))
- Remove dependency to `pin-utils`
([#&#8203;2929](https://redirect.github.com/rust-lang/futures-rs/issues/2929))
- Remove dependency on `num_cpus`
([#&#8203;2946](https://redirect.github.com/rust-lang/futures-rs/issues/2946))
- Performance improvements
([#&#8203;2983](https://redirect.github.com/rust-lang/futures-rs/issues/2983))
- Documentation improvements
([#&#8203;2925](https://redirect.github.com/rust-lang/futures-rs/issues/2925),
[#&#8203;2926](https://redirect.github.com/rust-lang/futures-rs/issues/2926),
[#&#8203;2940](https://redirect.github.com/rust-lang/futures-rs/issues/2940),
[#&#8203;2971](https://redirect.github.com/rust-lang/futures-rs/issues/2971))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day
24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/jerus-org/cull-gmail).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNi41IiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2026-03-13 09:44:40 +00:00
renovate[bot]
08764914ab fix(deps): update rust crate futures to 0.3.32 2026-03-13 09:42:56 +00:00
Jerus Bot
314a7e945a chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 09:40:31 +00:00
Jeremiah Russell
69cc5781bb fix(deps): update rust crate clap to 4.6.0 (#166)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [clap](https://redirect.github.com/clap-rs/clap) |
workspace.dependencies | minor | `4.5.58` → `4.6.0` |

---

### Release Notes

<details>
<summary>clap-rs/clap (clap)</summary>

###
[`v4.6.0`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#460---2026-03-12)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.61...v4.6.0)

##### Compatibility

- Update MSRV to 1.85

###
[`v4.5.61`](https://redirect.github.com/clap-rs/clap/compare/clap_complete-v4.5.60...clap_complete-v4.5.61)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.60...v4.5.61)

###
[`v4.5.60`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4560---2026-02-19)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.59...v4.5.60)

##### Fixes

- *(help)* Quote empty default values, possible values

###
[`v4.5.59`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4559---2026-02-16)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.58...v4.5.59)

##### Fixes

- `Command::ignore_errors` no longer masks help/version on subcommands

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day
24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/jerus-org/cull-gmail).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNi41IiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2026-03-13 09:40:15 +00:00
renovate[bot]
25471f43ba fix(deps): update rust crate clap to 4.6.0 2026-03-13 09:38:03 +00:00
Jerus Bot
2779bba2ac chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 09:36:56 +00:00
Jeremiah Russell
b4cee54471 fix(deps): update rust crate chrono to 0.4.44 (#165)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [chrono](https://redirect.github.com/chronotope/chrono) |
workspace.dependencies | patch | `0.4.43` → `0.4.44` |

---

### Release Notes

<details>
<summary>chronotope/chrono (chrono)</summary>

###
[`v0.4.44`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.44):
0.4.44

[Compare
Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.43...v0.4.44)

#### What's Changed

- docs: match MSRV with `Cargo.toml` contents by
[@&#8203;coryan](https://redirect.github.com/coryan) in
[#&#8203;1772](https://redirect.github.com/chronotope/chrono/pull/1772)
- Add track\_caller to non-deprecated functions by
[@&#8203;svix-jplatte](https://redirect.github.com/svix-jplatte) in
[#&#8203;1774](https://redirect.github.com/chronotope/chrono/pull/1774)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day
24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/jerus-org/cull-gmail).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNi41IiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2026-03-13 09:35:31 +00:00
renovate[bot]
d4287ef12d fix(deps): update rust crate chrono to 0.4.44 2026-03-13 09:33:04 +00:00
Jerus Bot
3ae90ac1a8 chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 09:31:35 +00:00
Jeremiah Russell
17e69477d9 fix(deps): update rust crate config to 0.15.21 (#171)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [config](https://redirect.github.com/rust-cli/config-rs) |
workspace.dependencies | patch | `0.15.19` → `0.15.21` |

---

### Release Notes

<details>
<summary>rust-cli/config-rs (config)</summary>

###
[`v0.15.21`](https://redirect.github.com/rust-cli/config-rs/blob/HEAD/CHANGELOG.md#01521---2026-03-12)

[Compare
Source](https://redirect.github.com/rust-cli/config-rs/compare/v0.15.20...v0.15.21)

##### Compatibility

- Bump MSRV to 1.85

###
[`v0.15.20`](https://redirect.github.com/rust-cli/config-rs/blob/HEAD/CHANGELOG.md#01520---2026-03-12)

[Compare
Source](https://redirect.github.com/rust-cli/config-rs/compare/v0.15.19...v0.15.20)

##### Fixes

- Serialize the full `u64` range

##### Internal

- *(toml)* Update to 1.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day
24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no
schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/jerus-org/cull-gmail).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41OS4wIiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2026-03-13 09:31:26 +00:00
renovate[bot]
deb9eeb2e0 fix(deps): update rust crate config to 0.15.21 2026-03-13 09:24:07 +00:00
Jerus Bot
f8a7e1fc93 chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-03-13 09:22:04 +00:00
Jeremiah Russell
58011866d8 chore: migrate to workspace structure and 3-file CI pipeline (#170)
## Summary

- Migrates flat crate structure to mandatory workspace layout
(`crates/cull-gmail/`)
- Replaces old 4-workflow flag-based CI with the 3-file pipeline model
at toolkit 4.9.6
- Fixes pre-existing broken doctest in `rules.rs`

## Changes

### Workspace migration
- `Cargo.toml` → workspace manifest with `[workspace.package]` and
`[workspace.dependencies]`
- `crates/cull-gmail/Cargo.toml` — crate manifest inheriting from
workspace
- `src/`, `tests/`, `CHANGELOG.md` moved to `crates/cull-gmail/`
- `docs/lib/` moved to `crates/cull-gmail/docs/lib/` (required for
`include_str!` to work with `cargo package`)
- `crates/cull-gmail/release.toml` — crate-specific config, tag format
`cull-gmail-v{{version}}`, **PRLOG replacements removed**
- `crates/cull-gmail/release-hook.sh` — updated paths for workspace
layout
- `release.toml` (workspace) — shared signing/branch settings only

### PRLOG
- Added `## [Unreleased]` section at top
- Updated reference links to use `cull-gmail-v*` tag format

### CI files
- `config.yml` — validation-only at toolkit 4.9.6 (no
`trigger_pipeline`)
- `update_prlog.yml` (new) — pr-merged event trigger
- `release.yml` — standard toolkit jobs: `calculate_versions` →
`release_crate` (with `build_binary: true`) → `release_prlog`

### Anchor tag
- `cull-gmail-v0.1.4` created at `v0.1.4` commit — gives nextsv a
baseline for crate-prefixed version calculation

### Bug fix
- Fixed doctest in `rules::Rules::get_rules_by_label_for_action`: added
missing `EolAction` import and corrected method name

## Post-merge setup required (CircleCI project settings)
- `update_prlog.yml` must be set as the trigger for the "pull_request
merged" event
- `release.yml` must be set as a manual trigger pipeline

🤖 Generated with [Claude Code](https://claude.com/claude-code)
2026-03-13 09:21:54 +00:00
Jeremiah Russell
4c1eeed863 fix(tests): use CARGO_BIN_EXE to locate binary in integration tests
Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-03-13 09:04:49 +00:00
Jeremiah Russell
27e915ca9e fix(ci): add package parameter to code_coverage job
Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-03-13 08:49:49 +00:00
Jeremiah Russell
a36c87301c fix(ci): ignore RUSTSEC-2025-0066 and add deny.toml
Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-03-13 08:40:24 +00:00
Jeremiah Russell
38a0193010 chore: migrate to workspace structure and 3-file CI pipeline at toolkit 4.9.6
Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-03-13 08:25:47 +00:00
Jerus Bot
363550326e chore: Release cull-gmail v0.1.4 2026-02-14 09:53:58 +00:00
Jeremiah Russell
9f5cff8207 👷 ci(circleci): update release workflow configuration (#163)
- add remove_ssh_key parameter to workflows configuration
- enhance security settings for release process

Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-02-14 09:45:18 +00:00
Jerus Bot
3df38b3989 chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-02-14 09:39:08 +00:00
Jeremiah Russell
5505bec44c 👷 ci(circleci): update release workflow configuration
- add remove_ssh_key parameter to workflows configuration
- enhance security settings for release process

Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-02-14 09:34:51 +00:00
Jerus Bot
4e3934f6ed chore: Release cull-gmail v0.1.3 2026-02-14 09:07:02 +00:00
Jeremiah Russell
ae3f84d444 👷 ci(circleci): use toolkit to update prlog (#162)
- change min_rust_version parameter to "1.88"
- comment out release-prlog job to disable it temporarily
- update workflow to use toolkit/make_release job with new parameters

Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-02-14 08:56:01 +00:00
Jerus Bot
b2557ec8f8 chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-02-14 08:54:21 +00:00
Jeremiah Russell
b1d3514946 👷 ci(circleci): use toolkit to update prlog
- change min_rust_version parameter to "1.88"
- comment out release-prlog job to disable it temporarily
- update workflow to use toolkit/make_release job with new parameters

Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-02-14 08:51:12 +00:00
Jeremiah Russell
4e088143b6 👷 ci(circleci): fix release tag format in CircleCI config (#161)
- modify release tag from 'cull-gmail-v${VERSION}' to 'v${VERSION}' for
consistency with other tags

Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-02-14 08:32:34 +00:00
Jerus Bot
3b8aa7b09f chore: update prlog for pr
Signed-off-by: Jerus Bot <171541392+jerus-bot@users.noreply.github.com>
2026-02-14 08:31:41 +00:00
Jeremiah Russell
d0468c5c68 👷 ci(circleci): fix release tag format in CircleCI config
- modify release tag from 'cull-gmail-v${VERSION}' to 'v${VERSION}' for consistency with other tags

Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-02-14 08:20:25 +00:00
Jerus Bot
81821bef33 chore: Release cull-gmail v0.1.2 2026-02-14 07:51:39 +00:00
Jeremiah Russell
26a06c5e0c 🔧 chore(ci): add version argument to pcu command (#160)
- append VERSION environment variable to pcu command for consistent
versioning in release process

Signed-off-by: Jeremiah Russell <jerry@jrussell.ie>
2026-02-14 07:44:33 +00:00