Skip to content

Commit

Permalink
v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
azzamsa committed Jan 4, 2023
1 parent 3a646b9 commit 5c66028
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 35 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.3.2] - 2023-01-04

### Bug fixes

- Migrate to `tokio` runtime ([6a83302](6a833026e333129c9eb33a56d8b5d6e1e8984c1b))

## [0.3.1] - 2022-12-24

### Bug fixes
Expand Down
99 changes: 74 additions & 25 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,7 +1,7 @@
[package]
# طين is an arabic word for Clay
name = "tin"
version = "0.3.1"
version = "0.3.2"
authors = ["azzamsa <vcs@azzamsa.com>"]
categories = ["web-programming"]
edition = "2021"
Expand All @@ -12,8 +12,8 @@ repository = "https://github.com/azzamsa/tin"
description = "Rust GraphQL Template"

[dependencies]
axum = "0.6"
hyper = "0.14"
axum = "0.6.1"
hyper = "0.14.23"
tokio = { version = "1.23", features = ["macros", "rt-multi-thread"] }

# GraphQL
Expand All @@ -25,21 +25,21 @@ utoipa = { version = "2.4", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "3.0", features = ["axum"] }

# Database
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres", "offline", "uuid", "chrono", "migrate"] }
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres", "offline", "uuid", "chrono", "migrate"] }

# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "time", "local-time"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "time", "local-time"] }

# Configurations
dotenv = "0.15"
dotenv = "0.15.0"

base64 = "0.13"
chrono = "0.4"
base64 = "0.13.1"
chrono = "0.4.23"
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
time = "0.3"
time = "0.3.17"
ulid = { version = "1.0", features = ["uuid"] }
url = "2.3"
uuid = "1.2"
Expand Down

0 comments on commit 5c66028

Please sign in to comment.