Skip to content

Commit

Permalink
fix cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
PonponJuice committed Oct 31, 2024
1 parent 64f674d commit 4b4d5a6
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
[package]
name = "trao-judge-backend"
version = "0.1.0"
edition = "2021"
[package]
name = "trao-judge-backend"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
axum = "0.7"
http-body-util = "0.1.0"
axum-extra = { version = "0.9", features = [ "typed-header" ] }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
tower = { version = "0.4", features = ["full"] }
tower-http = { version = "0.5.0", features = ["add-extension", "trace", "fs"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.0", features = ["serde", "v7"] }
reqwest = "0.12.5"
anyhow = "1.0"
thiserror = "1.0.63"
bcrypt = "0.15"
async-session = "3.0.0"
sqlx = { version = "0.7", features = [ "mysql", "runtime-async-std-native-tls", "migrate", "chrono", "uuid" ] }
jsonwebtoken = "9.3.0"
lettre = "0.11.7"
fancy-regex = "0.14.0"
[dependencies]
axum = "0.7"
http-body-util = "0.1.0"
axum-extra = { version = "0.9", features = [ "typed-header" ] }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
tower = { version = "0.4", features = ["full"] }
tower-http = { version = "0.5.0", features = ["add-extension", "trace", "fs"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.0", features = ["serde", "v7"] }
reqwest = "0.12.5"
anyhow = "1.0"
thiserror = "1.0.63"
bcrypt = "0.15"
async-session = "3.0.0"
sqlx = { version = "0.7", features = [ "mysql", "runtime-async-std-native-tls", "migrate", "chrono", "uuid" ] }
jsonwebtoken = "9.3.0"
lettre = "0.11.7"
fancy-regex = "0.14.0"

[dependencies.async-sqlx-session]
git = "https://github.com/maxcountryman/async-sqlx-session.git"
default-features = false
branch = "sqlx-0.7"
features = ["mysql"]
[dependencies.async-sqlx-session]
git = "https://github.com/maxcountryman/async-sqlx-session.git"
default-features = false
branch = "sqlx-0.7"
features = ["mysql"]

0 comments on commit 4b4d5a6

Please sign in to comment.