Skip to content

Commit

Permalink
add dot files
Browse files Browse the repository at this point in the history
  • Loading branch information
robatipoor committed Nov 1, 2023
1 parent e39fa68 commit 5df6f73
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.env
.dockerignore
Dockerfile
target/
scripts/
4 changes: 4 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
APP_PROFILE=dev
RUST_BACKTRACE=1
RUST_LOG=info
DATABASE_URL=postgres://postgres_user:postgres_pass@localhost:5432/postgres_db
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustfulapi"
authors = ["Mahdi <[email protected]>"]
authors = ["Mahdi Robatipoor<[email protected]>"]
description = "RESTful API template built with Rust language"
edition = "2021"
homepage = "https://github.com/robatipoor/rustfulapi"
Expand Down Expand Up @@ -35,8 +35,8 @@ hex = "0.4.3"
hex-literal = "0.4.1"
hmac = "0.12.1"
itertools = "0.11.0"
jsonwebtoken = "8.3.0"
lettre = { version = "0.10.4", features = ["tokio1-native-tls", "builder"] }
jsonwebtoken = "9.1.0"
lettre = { version = "0.11.1", features = ["tokio1-native-tls", "builder"] }
log = "0.4.20"
log-derive = "0.4.1"
mockall = "0.11.4"
Expand Down Expand Up @@ -64,17 +64,17 @@ tracing = "0.1.37"
tracing-actix-web = "0.7.6"
tracing-appender = "0.2.2"
tracing-bunyan-formatter = "0.3.9"
tracing-log = "0.1.3"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.17", features = [
"registry",
"env-filter",
] }
url = "2.4.1"
utoipa = { version = "3.5.0", features = ["axum_extras", "uuid", "chrono"] }
utoipa-swagger-ui = { version = "3.1.5", features = ["axum"] }
utoipa = { version = "4.0.0", features = ["axum_extras", "uuid", "chrono"] }
utoipa-swagger-ui = { version = "4.0.0", features = ["axum"] }
uuid = { version = "1.4.1", features = ["v4", "serde"] }
validator = { version = "0.16.1", features = ["derive"] }
tokio-tungstenite = "0.20.0"
wiremock = "0.5.19"
garde = "0.15.0"
garde = "0.16.0"
regex = "1.9.5"
1 change: 0 additions & 1 deletion run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env bash

./scripts/init_redis.sh
./scripts/init_mailhog.sh
./scripts/init_postgres.sh
Expand Down
1 change: 0 additions & 1 deletion rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# rustfmt configurations from master branch, check rustfmt version
# (cargo fmt --version).
# https://github.com/rust-lang/rustfmt/blob/master/Configurations.md

edition = "2021"
tab_spaces = 2
reorder_imports = true

0 comments on commit 5df6f73

Please sign in to comment.