mirror of
https://github.com/PCSX2/web-api.git
synced 2026-01-31 01:15:16 +01:00
* build(deps): bump the deps group with 5 updates Bumps the deps group with 5 updates: | Package | From | To | | --- | --- | --- | | [sqlx](https://github.com/launchbadge/sqlx) | `0.7.4` | `0.8.3` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.32.0` | `0.43.0` | | [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.40` | | [fern](https://github.com/daboross/fern) | `0.6.2` | `0.7.1` | | [log](https://github.com/rust-lang/log) | `0.4.22` | `0.4.26` | Updates `sqlx` from 0.7.4 to 0.8.3 - [Changelog](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md) - [Commits](https://github.com/launchbadge/sqlx/compare/v0.7.4...v0.8.3) Updates `octocrab` from 0.32.0 to 0.43.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.32.0...v0.43.0) Updates `chrono` from 0.4.38 to 0.4.40 - [Release notes](https://github.com/chronotope/chrono/releases) - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md) - [Commits](https://github.com/chronotope/chrono/compare/v0.4.38...v0.4.40) Updates `fern` from 0.6.2 to 0.7.1 - [Release notes](https://github.com/daboross/fern/releases) - [Changelog](https://github.com/daboross/fern/blob/main/CHANGELOG.md) - [Commits](https://github.com/daboross/fern/compare/fern-0.6.2...fern-0.7.1) Updates `log` from 0.4.22 to 0.4.26 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.22...0.4.26) --- updated-dependencies: - dependency-name: sqlx dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: chrono dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: fern dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com> * sqlx: update query metadata --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tyler Wilding <xtvaser@gmail.com>
22 lines
535 B
TOML
22 lines
535 B
TOML
[package]
|
|
name = "pcsx2-api"
|
|
version = "2.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
hex = "0.4.3"
|
|
rocket = { version = "0.5.0", features = ["json"] }
|
|
sqlx = { version = "0.8.3", features = ["runtime-tokio", "sqlite"] }
|
|
dotenvy = "0.15"
|
|
regex = "1.5"
|
|
lazy_static = "1.4"
|
|
sha2 = "0.10.8"
|
|
hmac = "0.12.1"
|
|
octocrab = { version = "0.43.0", features = ["stream"] }
|
|
chrono = "0.4.40"
|
|
fern = { version = "0.7.1", features = ["date-based", "colored"] }
|
|
log = "0.4.26"
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|