Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
cache-on-failure: true

- name: ⚡️ Shared Compilation Cache
uses: mozilla-actions/sccache-action@v0.0.9
uses: mozilla-actions/sccache-action@v0.0.10

- name: 🧪 Install coverage tools
uses: taiki-e/install-action@cargo-llvm-cov
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
tool: cargo-zigbuild

- uses: sigstore/cosign-installer@v4.0.0
- uses: sigstore/cosign-installer@v4.1.1
name: ✏️ Set up Cosign

- name: 🐬 Set up QEMU
Expand Down
42 changes: 21 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,34 +39,34 @@ module_name_repetitions = "allow"
significant_drop_tightening = "allow"

[dependencies]
anyhow = { version = "=1.0.98", features = ["backtrace"] }
async-trait = "=0.1.88"
base64-url = "=3.0.0"
bon = { version = "=3.6.4", features = ["implied-bounds"] }
chrono = "=0.4.41"
clap = { version = "=4.5.40", features = ["cargo", "derive", "env", "unicode"] }
anyhow = { version = "=1.0.102", features = ["backtrace"] }
async-trait = "=0.1.89"
base64-url = "=3.0.3"
bon = { version = "=3.9.1", features = ["implied-bounds"] }
chrono = "=0.4.44"
clap = { version = "=4.6.1", features = ["cargo", "derive", "env", "unicode"] }
deunicode = "=1.6.2"
dotenvy = "=0.15.7"
http = "=1.3.1"
http = "=1.4.0"
itertools = "=0.14.0"
log = "=0.4.27"
logfire = "=0.8.2"
log = "=0.4.29"
logfire = "=0.9.0"
maud = "=0.27.0"
monostate = "=1.0.1"
reqwest = { version = "=0.12.22", default-features = false, features = ["cookies", "gzip", "http2", "json", "rustls-tls"] }
reqwest-middleware = { version = "=0.4.2", features = ["http2", "json", "rustls-tls"] }
prost = "=0.14.1"
rust_decimal = "=1.37.2"
rust_decimal_macros = "=1.37.1"
monostate = "=1.0.2"
reqwest = { version = "=0.13.3", default-features = false, features = ["cookies", "gzip", "http2", "json", "rustls-tls"] }
reqwest-middleware = { version = "=0.5.1", features = ["http2", "json", "rustls-tls"] }
prost = "=0.14.3"
rust_decimal = "=1.41.0"
rust_decimal_macros = "=1.40.0"
seahash = "=4.1.0"
secrecy = { version = "=0.10.3", features = ["serde"] }
sentry = { version = "=0.41.0", default-features = false, features = ["anyhow", "backtrace", "contexts", "panic", "reqwest", "release-health", "rustls"] }
sentry = { version = "=0.48.1", default-features = false, features = ["anyhow", "backtrace", "contexts", "panic", "reqwest", "release-health", "rustls"] }
serde = "=1.0.228"
serde_json = "=1.0.140"
serde_json = "=1.0.149"
serde_qs = "=0.15.0"
sqlx = { version = "=0.8.6", features = ["chrono", "migrate", "runtime-tokio", "sqlite"] }
sqlx-sqlite = "=0.8.6"
thiserror = "=2.0.12"
tokio = { version = "=1.46.1", features = ["macros", "rt-multi-thread", "time"] }
tracing = "=0.1.41"
url = "=2.5.4"
thiserror = "=2.0.18"
tokio = { version = "=1.52.2", features = ["macros", "rt-multi-thread", "time"] }
tracing = "=0.1.44"
url = "=2.5.8"
Loading