Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vladkens committed Oct 12, 2024
1 parent 638ae8e commit 55a5694
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 22 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: build

on:
push:
pull_request:

jobs:
build:
Expand Down
21 changes: 9 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[package]
name = "ghstats"
version = "0.4.0"
version = "0.5.0"
edition = "2021"

[dependencies]
anyhow = "1.0.86"
axum = "0.7.5"
anyhow = "1.0.89"
axum = "0.7.7"
chrono = { version = "0.4.38", features = ["serde"] }
dotenvy = "0.15.7"
maud = { version = "0.26.0", features = ["axum"] }
reqwest = { version = "0.12.5", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1.0.204", features = ["serde_derive"] }
serde_json = "1.0.120"
reqwest = { version = "0.12.8", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1.0.210", features = ["serde_derive"] }
serde_json = "1.0.128"
serde_variant = "0.1.3"
sqlx = { version = "0.8.0", features = ["runtime-tokio", "sqlite"] }
sqlx = { version = "0.8.2", features = ["runtime-tokio", "sqlite"] }
thousands = "0.2.0"
tokio = { version = "1.38.1", features = ["full"] }
tokio-cron-scheduler = "0.11.0"
tower-http = { version = "0.5.2", features = ["trace", "cors"] }
tokio = { version = "1.40.0", features = ["full"] }
tokio-cron-scheduler = "0.13.0"
tower-http = { version = "0.6.1", features = ["trace", "cors"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"

Expand Down
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
dev:
cargo watch -q -x 'run'

lint:
cargo fmt --check
cargo check --release --locked

update:
@# cargo install cargo-edit
cargo upgrade -i

docker-build:
docker build -t ghstats .
docker images -q ghstats | xargs docker inspect -f '{{.Size}}' | xargs numfmt --to=iec
Expand Down

0 comments on commit 55a5694

Please sign in to comment.