Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
Hy-u-3a4eM committed Feb 7, 2024
1 parent df000b1 commit bdd69a0
Show file tree
Hide file tree
Showing 6 changed files with 355 additions and 144 deletions.
83 changes: 73 additions & 10 deletions Cargo.lock

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

11 changes: 7 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,22 @@ edition = "2021"
# web framework
axum = { version = "0.7.4", features = [] }
# async HTTP client
reqwest = { version = "0.11.23", features = ["json"] }
reqwest = { version = "0.11.24", features = ["json"] }
# serialization/deserialization for JSON
serde = { version = "1.0.196", features = ["derive"] }
# database access
sqlx = { version = "0.7.3", features = ["postgres", "runtime-tokio"] }
sqlx = { version = "0.7.3", features = ["postgres", "runtime-tokio", "runtime-tokio-native-tls", "chrono", "uuid"] }
# async runtime
tokio = { version = "1.35.1", features = ["full"] }
tokio = { version = "1.36.0", features = ["full"] }
once_cell = "1.19.0"
serde_json = "1.0.112"
serde_json = "1.0.113"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing = "0.1.40"
axum-extra = { version = "0.9.2", features = ["typed-header", "cookie"] }
jsonwebtoken = "9.2.0"
tower-http = { version = "0.5.1", features = ["cors"] }
chrono = { version = "0.4.33", features = ["serde"] }
uuid = { version = "1.7.0", features = ["v4", "serde"] }
rand_core = { version = "0.6.4", features = ["std"] }
time = "0.3.34"
argon2 = "0.5.3"
Loading

0 comments on commit bdd69a0

Please sign in to comment.