Compare commits
92 Commits
fix/clippy
...
feature/de
Author | SHA1 | Date | |
---|---|---|---|
76d71ac33d
|
|||
758337f686 | |||
5a9aa74a74 | |||
262be955ca | |||
ba496a6864 | |||
7b83a52318 | |||
98c20a3e7f | |||
e99b353ef8 | |||
1aa8c621ec | |||
d881ca83c0 | |||
7ae846014e | |||
b991dff5f6 | |||
50620eb63f | |||
b179410bbf | |||
1d1202230b | |||
5ef7e54a24 | |||
358edccfff | |||
dce8337acc | |||
672847b992 | |||
e8d30d464c | |||
5817c89502 | |||
67e91960e5 | |||
f56a9765aa | |||
b80aa28df2 | |||
5253f92a23 | |||
ec01d04516 | |||
607cbffc00 | |||
9724de7a5c | |||
1957fc4edf | |||
3f59f331d9 | |||
96a6ce6711 | |||
00cf32c8af | |||
7d8e2a6dc3 | |||
8155ed5ed3 | |||
d04464bf05 | |||
e4ddba9301 | |||
1769cd8739 | |||
46d32cf9d9 | |||
cb8ffcf000 | |||
580727dce3 | |||
1b07225e2c | |||
f2268b5eec | |||
1a40ac58f6 | |||
7471f44d3b | |||
919db1a4ce | |||
c89d451b3a | |||
ed953f172f | |||
ac5878d8db | |||
53be2f9fd8 | |||
60fd113197 | |||
353d108ce5 | |||
cf2235d912 | |||
458d6eb4c4 | |||
b0883c8902 | |||
6312b90a4f | |||
7fc5f9aefa | |||
238f6b7998 | |||
b64809957f | |||
8461048e79 | |||
d8670730f2 | |||
4f69cd48ae | |||
1edf144dda | |||
3c7f83e484 | |||
0e4b5bcd1a | |||
930dffc7bf | |||
7681169ee8 | |||
abeef688a9 | |||
f2dafb754b | |||
d2402d9349 | |||
679e01b475 | |||
6feb77487b | |||
0d6d41cc02 | |||
8f1d920941 | |||
9f1e9a5d88 | |||
627b88fbed | |||
0015441100 | |||
79e1c452b6 | |||
563c5b4627 | |||
a04980e63e | |||
08c45f924d | |||
8bc19dd751 | |||
92cd01a024 | |||
41da0fc52d | |||
287b1b44e7 | |||
1eb11c7916 | |||
0534a2587e | |||
8aa8befaac | |||
faaa0da936 | |||
8b8294e1de | |||
d7d5291d7e | |||
4e2aadda7d | |||
509c392322 |
12
.github/dependabot.yml
vendored
12
.github/dependabot.yml
vendored
@ -22,3 +22,15 @@ updates:
|
||||
labels:
|
||||
- dependabot
|
||||
- dependencies
|
||||
|
||||
- package-ecosystem: docker
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
time: "04:00"
|
||||
open-pull-requests-limit: 10
|
||||
assignees:
|
||||
- vbrandl
|
||||
labels:
|
||||
- dependencies
|
||||
- dependabot
|
||||
|
2
.github/workflows/audit.yml
vendored
2
.github/workflows/audit.yml
vendored
@ -15,7 +15,7 @@ jobs:
|
||||
security_audit:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: rustsec/audit-check@v1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
4
.github/workflows/dependabot-changelog.yml
vendored
4
.github/workflows/dependabot-changelog.yml
vendored
@ -15,12 +15,12 @@ jobs:
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
token: ${{ secrets.ACTION_TOKEN }}
|
||||
- uses: dangoslen/dependabot-changelog-helper@v3
|
||||
with:
|
||||
activationLabel: 'dependabot'
|
||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||
- uses: stefanzweifel/git-auto-commit-action@v5
|
||||
with:
|
||||
commit_message: "Update Changelog"
|
||||
|
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -33,7 +33,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install stable toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
@ -84,7 +84,7 @@ jobs:
|
||||
needs: [tests]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: taiki-e/create-gh-release-action@v1
|
||||
with:
|
||||
changelog: CHANGELOG.md
|
||||
|
6
.github/workflows/rust.yml
vendored
6
.github/workflows/rust.yml
vendored
@ -13,7 +13,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install stable toolchain
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
@ -27,7 +27,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install stable toolchain
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
@ -58,7 +58,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install stable toolchain
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
|
25
CHANGELOG.md
25
CHANGELOG.md
@ -5,19 +5,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
### Dependencies
|
||||
- Bump `serde` from 1.0.160 to 1.0.183 (#613, #617, #627, #636, #639, #640, #645, [#648](https://github.com/vbrandl/hoc/pull/648), [#650](https://github.com/vbrandl/hoc/pull/650), [#652](https://github.com/vbrandl/hoc/pull/652), [#653](https://github.com/vbrandl/hoc/pull/653), [#654](https://github.com/vbrandl/hoc/pull/654), [#655](https://github.com/vbrandl/hoc/pull/655), [#657](https://github.com/vbrandl/hoc/pull/657))
|
||||
- Bump `serde` from 1.0.160 to 1.0.192 (#613, #617, #627, #636, #639, #640, #645, [#648](https://github.com/vbrandl/hoc/pull/648), [#650](https://github.com/vbrandl/hoc/pull/650), [#652](https://github.com/vbrandl/hoc/pull/652), [#653](https://github.com/vbrandl/hoc/pull/653), [#654](https://github.com/vbrandl/hoc/pull/654), [#655](https://github.com/vbrandl/hoc/pull/655), [#657](https://github.com/vbrandl/hoc/pull/657), [#669](https://github.com/vbrandl/hoc/pull/669), [#687](https://github.com/vbrandl/hoc/pull/687), [#692](https://github.com/vbrandl/hoc/pull/692), [#698](https://github.com/vbrandl/hoc/pull/698))
|
||||
- Bump `actions/cache` from 2 to 3 (#616)
|
||||
- Bump `tokio` from 1.28.0 to 1.32.0 (#618, #625, #633, #634, [#659](https://github.com/vbrandl/hoc/pull/659), [#660](https://github.com/vbrandl/hoc/pull/660), [#665](https://github.com/vbrandl/hoc/pull/665))
|
||||
- Bump `reqwest` from 0.11.17 to 0.11.18 (#619)
|
||||
- Bump `vergen` from 8.1.3 to 8.2.4 (#621, #622, #635, #638)
|
||||
- Bump `tracing-actix-web` from 0.7.4 to 0.7.6 (#623, [#656](https://github.com/vbrandl/hoc/pull/656))
|
||||
- Bump `git2` from 0.17.1 to 0.17.2 (#624)
|
||||
- Bump `tempfile` from 3.5.0 to 3.8.0 (#626, [#646](https://github.com/vbrandl/hoc/pull/646), [#658](https://github.com/vbrandl/hoc/pull/658), [#667](https://github.com/vbrandl/hoc/pull/667))
|
||||
- Bump `serde_json` from 1.0.96 to 1.0.105 (#630, #632, #637, #641, #644, [#649](https://github.com/vbrandl/hoc/pull/649), [#663](https://github.com/vbrandl/hoc/pull/663))
|
||||
- Bump `tokio` from 1.28.0 to 1.34.0 (#618, #625, #633, #634, [#659](https://github.com/vbrandl/hoc/pull/659), [#660](https://github.com/vbrandl/hoc/pull/660), [#665](https://github.com/vbrandl/hoc/pull/665), [#686](https://github.com/vbrandl/hoc/pull/686), [#699](https://github.com/vbrandl/hoc/pull/699))
|
||||
- Bump `reqwest` from 0.11.17 to 0.11.22 (#619, [#672](https://github.com/vbrandl/hoc/pull/672), [#683](https://github.com/vbrandl/hoc/pull/683), [#684](https://github.com/vbrandl/hoc/pull/684))
|
||||
- Bump `vergen` from 8.1.3 to 8.2.6 (#621, #622, #635, #638, [#679](https://github.com/vbrandl/hoc/pull/679), [#697](https://github.com/vbrandl/hoc/pull/697))
|
||||
- Bump `tracing-actix-web` from 0.7.4 to 0.7.8 (#623, [#656](https://github.com/vbrandl/hoc/pull/656), [#682](https://github.com/vbrandl/hoc/pull/682), [#690](https://github.com/vbrandl/hoc/pull/690))
|
||||
- Bump `git2` from 0.17.1 to 0.18.1 (#624, [#674](https://github.com/vbrandl/hoc/pull/674), [#681](https://github.com/vbrandl/hoc/pull/681))
|
||||
- Bump `tempfile` from 3.5.0 to 3.8.1 (#626, [#646](https://github.com/vbrandl/hoc/pull/646), [#658](https://github.com/vbrandl/hoc/pull/658), [#667](https://github.com/vbrandl/hoc/pull/667), [#695](https://github.com/vbrandl/hoc/pull/695))
|
||||
- Bump `serde_json` from 1.0.96 to 1.0.108 (#630, #632, #637, #641, #644, [#649](https://github.com/vbrandl/hoc/pull/649), [#663](https://github.com/vbrandl/hoc/pull/663), [#678](https://github.com/vbrandl/hoc/pull/678), [#680](https://github.com/vbrandl/hoc/pull/680), [#696](https://github.com/vbrandl/hoc/pull/696))
|
||||
- Bump `openssl` from 0.10.50 to 0.10.55 (#631)
|
||||
- Bump `tracing-bunyan-formatter` from 0.3.7 to 0.3.9 (#642, [#661](https://github.com/vbrandl/hoc/pull/661))
|
||||
- Bump `anyhow` from 1.0.71 to 1.0.75 (#643, [#662](https://github.com/vbrandl/hoc/pull/662), [#664](https://github.com/vbrandl/hoc/pull/664))
|
||||
- Bump `ructe` from 0.16.1 to 0.17.0 ([#647](https://github.com/vbrandl/hoc/pull/647))
|
||||
- Bump `actix-rt` from 2.8.0 to 2.9.0 ([#670](https://github.com/vbrandl/hoc/pull/670))
|
||||
- Bump `actix-web` from 4.3.1 to 4.4.0 ([#673](https://github.com/vbrandl/hoc/pull/673))
|
||||
- Bump `awc` from 3.1.1 to 3.2.0 ([#675](https://github.com/vbrandl/hoc/pull/675))
|
||||
- Bump `actions/checkout` from 3 to 4 ([#676](https://github.com/vbrandl/hoc/pull/676))
|
||||
- Bump `bytes` from 1.4.0 to 1.5.0 ([#677](https://github.com/vbrandl/hoc/pull/677))
|
||||
- Bump `stefanzweifel/git-auto-commit-action` from 4 to 5 ([#685](https://github.com/vbrandl/hoc/pull/685))
|
||||
- Bump `tracing` from 0.1.37 to 0.1.40 ([#688](https://github.com/vbrandl/hoc/pull/688), [#689](https://github.com/vbrandl/hoc/pull/689))
|
||||
- Bump `tracing-log` from 0.1.3 to 0.2.0 ([#691](https://github.com/vbrandl/hoc/pull/691), [#693](https://github.com/vbrandl/hoc/pull/693))
|
||||
- Bump `futures` from 0.3.28 to 0.3.29 ([#694](https://github.com/vbrandl/hoc/pull/694))
|
||||
|
||||
|
||||
## [0.35.0] 2023-05-04
|
||||
|
670
Cargo.lock
generated
670
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
30
Cargo.toml
30
Cargo.toml
@ -13,36 +13,36 @@ path = "src/main.rs"
|
||||
name = "hoc"
|
||||
|
||||
[dependencies]
|
||||
actix-rt = "2.8.0"
|
||||
actix-web = "4.3.1"
|
||||
actix-rt = "2.9.0"
|
||||
actix-web = "4.4.0"
|
||||
badgers = "1.2.0"
|
||||
bytes = "1.4.0"
|
||||
bytes = "1.5.0"
|
||||
config = { version = "0.13.3", features = ["toml"] }
|
||||
dotenvy = "0.15.7"
|
||||
futures = "0.3.28"
|
||||
git2 = "0.17.2"
|
||||
futures = "0.3.29"
|
||||
git2 = "0.18.1"
|
||||
lazy_static = "1.4.0"
|
||||
mime = "0.3"
|
||||
number_prefix = "0.4.0"
|
||||
openssl-probe = "0.1.5"
|
||||
reqwest = "0.11.18"
|
||||
serde = "1.0.183"
|
||||
reqwest = "0.11.22"
|
||||
serde = "1.0.192"
|
||||
serde_derive = "1.0.166"
|
||||
serde_json = "1.0.105"
|
||||
tracing = "0.1.37"
|
||||
tracing-actix-web = "0.7.6"
|
||||
serde_json = "1.0.108"
|
||||
tracing = "0.1.40"
|
||||
tracing-actix-web = "0.7.8"
|
||||
tracing-bunyan-formatter = "0.3.9"
|
||||
tracing-futures = "0.2.5"
|
||||
tracing-log = "0.1.3"
|
||||
tracing-log = "0.2.0"
|
||||
tracing-subscriber = { version = "0.3.17", features = ["registry", "env-filter"] }
|
||||
|
||||
[build-dependencies]
|
||||
anyhow = "1.0.75"
|
||||
ructe = { version = "0.17.0", features = ["mime03"] }
|
||||
vergen = { version = "8.2.4", default-features = false, features = ["git", "gitoxide"] }
|
||||
vergen = { version = "8.2.6", default-features = false, features = ["git", "gitoxide"] }
|
||||
|
||||
[dev-dependencies]
|
||||
awc = "3.1.1"
|
||||
awc = "3.2.0"
|
||||
ructe = "0.17.0"
|
||||
tempfile = "3.8.0"
|
||||
tokio = "1.32.0"
|
||||
tempfile = "3.8.1"
|
||||
tokio = "1.34.0"
|
||||
|
Reference in New Issue
Block a user