Skip to content

Commit

Permalink
Upgrade all dependencies
Browse files Browse the repository at this point in the history
Ignore changes in markdown files and .github for release
Update `.gitignore`
  • Loading branch information
dormant-user committed Feb 10, 2024
1 parent 8eaa5a6 commit ba2cc6a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml → .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Build, test, upload artifact and release crate

on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
branches:
- main
paths-ignore:
- '*.md'
- '.github/**'

env:
CARGO_TERM_COLOR: always
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ Cargo.lock

# RustRover IDE
.idea

# Secrets mapping
config.json
src_test/
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ path = "src/main.rs"

[dependencies]
actix-rt = "2.9.0"
actix-web = "4.4.1"
actix-web = "4.5.1"
actix-files = "0.6.5"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.51"
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
chrono = { version = "0.4.33", features = ["serde"] }
env_logger = "0.11.1"
log = "0.4.20"
lazy_static = "1.4.0"
Expand All @@ -29,5 +29,5 @@ rand = "0.8.5"
fernet = "0.2.1"
minijinja = "1.0.12"
pyo3 = { version = "0.20.2", features = ["auto-initialize"] }
url = "2.2.1"
url = "2.5.0"
itertools = "0.12.1"

0 comments on commit ba2cc6a

Please sign in to comment.