2023-07-28 21:32:37 +02:00
|
|
|
[workspace]
|
2023-08-02 12:25:48 +02:00
|
|
|
members = [
|
|
|
|
"crates/cuddle-please",
|
|
|
|
"crates/cuddle-please-frontend",
|
|
|
|
"crates/cuddle-please-commands",
|
|
|
|
"crates/cuddle-please-misc",
|
2023-08-04 18:32:09 +02:00
|
|
|
"crates/cuddle-please-release-strategy",
|
2023-08-02 16:31:31 +02:00
|
|
|
"ci"
|
2023-08-02 12:25:48 +02:00
|
|
|
]
|
2023-07-28 21:32:37 +02:00
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
2023-08-02 12:30:49 +02:00
|
|
|
cuddle-please = { path = "crates/cuddle-please", version = "0.1.0" }
|
|
|
|
cuddle-please-frontend = { path = "crates/cuddle-please-frontend", version = "0.1.0" }
|
|
|
|
cuddle-please-commands = { path = "crates/cuddle-please-commands", version = "0.1.0" }
|
|
|
|
cuddle-please-misc = { path = "crates/cuddle-please-misc", version = "0.1.0" }
|
2023-08-04 18:32:09 +02:00
|
|
|
cuddle-please-release-strategy = { path = "crates/cuddle-please-release-strategy", version = "0.1.0" }
|
2023-07-28 21:32:37 +02:00
|
|
|
|
chore(deps): update all dependencies (#2)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [anyhow](https://github.com/dtolnay/anyhow) | workspace.dependencies | patch | `1.0.71` -> `1.0.72` |
| [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.3.4` -> `4.3.19` |
---
### Release Notes
<details>
<summary>dtolnay/anyhow</summary>
### [`v1.0.72`](https://github.com/dtolnay/anyhow/releases/tag/1.0.72)
[Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.71...1.0.72)
- Documentation improvements
</details>
<details>
<summary>clap-rs/clap</summary>
### [`v4.3.19`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4319---2023-07-21)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.18...v4.3.19)
##### Fixes
- *(parse)* Respect `value_terminator` even in the presence of later multiple-value positional arguments
### [`v4.3.18`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4318---2023-07-21)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.17...v4.3.18)
##### Fixes
- *(parse)* Suggest `--` in fewer places where it won't work
### [`v4.3.17`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4317---2023-07-19)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.16...v4.3.17)
##### Fixes
- *(help)* Address a regression in wrapping `PossibleValue` descriptions in `--help`
### [`v4.3.16`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4316---2023-07-18)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.15...v4.3.16)
##### Fixes
- Don't assert when stateful value parsers fail on defaults (e.g. checking if a path exists)
### [`v4.3.15`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4315---2023-07-18)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.14...v4.3.15)
##### Features
- *(unstable-styles)* Re-export `anstyle`
##### Documentation
- *(unstable-styles)* Provide more examples
### [`v4.3.14`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4314---2023-07-17)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.13...v4.3.14)
##### Features
- `ArgAction::HelpShort` and `ArgAction::HelpLong` for explicitly specifying which style of help to display
##### Fixes
- Skip `[OPTIONS]` in usage if a help or version `ArgAction` is used
### [`v4.3.13`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4313---2023-07-17)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.12...v4.3.13)
### [`v4.3.12`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4312---2023-07-14)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.11...v4.3.12)
##### Fixes
- *(derive)* Don't error on enum variant field attributes
### [`v4.3.11`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4311---2023-07-05)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.10...v4.3.11)
##### Features
- *(derive)* Support fields wrapped in `num::Wrapping`, `Box`, or `Arc`
- *(derive)* Support `Box<str>`, `Box<OsStr>`, and `Box<Path>`
### [`v4.3.10`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4310---2023-06-30)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.9...v4.3.10)
##### Performance
- Drop a dependency, reducing binary size by 1.3 KiB
### [`v4.3.9`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​439---2023-06-28)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.8...v4.3.9)
##### Fixes
- `Command::ignore_errors` no longer masks help/version
### [`v4.3.8`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​438---2023-06-23)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.7...v4.3.8)
##### Fixes
- Error on ambiguity with `infer_long_arg`, rather than arbitrarily picking one, matching the documentation and subcommand's behavior
### [`v4.3.7`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​437---2023-06-23)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.6...v4.3.7)
##### Documentation
- Further clarify magic behavior in derive tutorial
- Further clarify derive API's relationship to builder within the tutorial
### [`v4.3.6`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​436---2023-06-23)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.5...v4.3.6)
##### Documentation
- Suggest `clio`
### [`v4.3.5`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​435---2023-06-20)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.4...v4.3.5)
- `ColorChoice::possible_values` is added to simplify things for builder users
##### Fixes
- `ColorChoice::to_possible_value` no longer includes descriptions, encouraging shorter help where possible
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->
Reviewed-on: https://git.front.kjuulh.io/kjuulh/cuddle-please/pulls/2
2023-08-01 17:56:54 +02:00
|
|
|
anyhow = { version = "1.0.72" }
|
2023-07-28 21:32:37 +02:00
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
2023-08-02 00:13:34 +02:00
|
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
chore(deps): update all dependencies (#2)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [anyhow](https://github.com/dtolnay/anyhow) | workspace.dependencies | patch | `1.0.71` -> `1.0.72` |
| [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.3.4` -> `4.3.19` |
---
### Release Notes
<details>
<summary>dtolnay/anyhow</summary>
### [`v1.0.72`](https://github.com/dtolnay/anyhow/releases/tag/1.0.72)
[Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.71...1.0.72)
- Documentation improvements
</details>
<details>
<summary>clap-rs/clap</summary>
### [`v4.3.19`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4319---2023-07-21)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.18...v4.3.19)
##### Fixes
- *(parse)* Respect `value_terminator` even in the presence of later multiple-value positional arguments
### [`v4.3.18`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4318---2023-07-21)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.17...v4.3.18)
##### Fixes
- *(parse)* Suggest `--` in fewer places where it won't work
### [`v4.3.17`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4317---2023-07-19)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.16...v4.3.17)
##### Fixes
- *(help)* Address a regression in wrapping `PossibleValue` descriptions in `--help`
### [`v4.3.16`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4316---2023-07-18)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.15...v4.3.16)
##### Fixes
- Don't assert when stateful value parsers fail on defaults (e.g. checking if a path exists)
### [`v4.3.15`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4315---2023-07-18)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.14...v4.3.15)
##### Features
- *(unstable-styles)* Re-export `anstyle`
##### Documentation
- *(unstable-styles)* Provide more examples
### [`v4.3.14`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4314---2023-07-17)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.13...v4.3.14)
##### Features
- `ArgAction::HelpShort` and `ArgAction::HelpLong` for explicitly specifying which style of help to display
##### Fixes
- Skip `[OPTIONS]` in usage if a help or version `ArgAction` is used
### [`v4.3.13`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4313---2023-07-17)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.12...v4.3.13)
### [`v4.3.12`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4312---2023-07-14)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.11...v4.3.12)
##### Fixes
- *(derive)* Don't error on enum variant field attributes
### [`v4.3.11`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4311---2023-07-05)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.10...v4.3.11)
##### Features
- *(derive)* Support fields wrapped in `num::Wrapping`, `Box`, or `Arc`
- *(derive)* Support `Box<str>`, `Box<OsStr>`, and `Box<Path>`
### [`v4.3.10`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​4310---2023-06-30)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.9...v4.3.10)
##### Performance
- Drop a dependency, reducing binary size by 1.3 KiB
### [`v4.3.9`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​439---2023-06-28)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.8...v4.3.9)
##### Fixes
- `Command::ignore_errors` no longer masks help/version
### [`v4.3.8`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​438---2023-06-23)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.7...v4.3.8)
##### Fixes
- Error on ambiguity with `infer_long_arg`, rather than arbitrarily picking one, matching the documentation and subcommand's behavior
### [`v4.3.7`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​437---2023-06-23)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.6...v4.3.7)
##### Documentation
- Further clarify magic behavior in derive tutorial
- Further clarify derive API's relationship to builder within the tutorial
### [`v4.3.6`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​436---2023-06-23)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.5...v4.3.6)
##### Documentation
- Suggest `clio`
### [`v4.3.5`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#​435---2023-06-20)
[Compare Source](https://github.com/clap-rs/clap/compare/v4.3.4...v4.3.5)
- `ColorChoice::possible_values` is added to simplify things for builder users
##### Fixes
- `ColorChoice::to_possible_value` no longer includes descriptions, encouraging shorter help where possible
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->
Reviewed-on: https://git.front.kjuulh.io/kjuulh/cuddle-please/pulls/2
2023-08-01 17:56:54 +02:00
|
|
|
clap = { version = "4.3.19", features = ["derive", "env"] }
|
2023-07-28 21:32:37 +02:00
|
|
|
dotenv = { version = "0.15.0" }
|
2023-07-31 00:35:19 +02:00
|
|
|
url = { version = "2.4.0" }
|
|
|
|
serde_yaml = { version = "0.9.25" }
|
2023-08-07 13:34:58 +02:00
|
|
|
serde_json = { version = "*" }
|
2023-07-31 00:35:19 +02:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-07-30 14:03:24 +02:00
|
|
|
semver = "1.0.18"
|
2023-07-30 17:24:33 +02:00
|
|
|
conventional_commit_parser = "0.9.4"
|
2023-07-31 00:35:19 +02:00
|
|
|
tempdir = "0.3.7"
|
|
|
|
reqwest = { version = "0.11.18" }
|
|
|
|
git-cliff-core = "1.2.0"
|
2023-08-02 12:25:48 +02:00
|
|
|
regex = "1.9.1"
|
|
|
|
chrono = "0.4.26"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
parse-changelog = "0.6.1"
|
2023-07-30 01:39:28 +02:00
|
|
|
|
2023-07-31 00:35:19 +02:00
|
|
|
tracing-test = "0.2"
|
|
|
|
pretty_assertions = "1.4"
|