build: ⬆️ disable defaults for dependencies and updating their versions
This commit is contained in:
parent
bb2b70ccac
commit
87412ca828
1 changed files with 8 additions and 8 deletions
16
Cargo.toml
16
Cargo.toml
|
@ -15,13 +15,13 @@ panic = "abort"
|
|||
strip = "symbols"
|
||||
|
||||
[dependencies]
|
||||
axum = "0.7.9"
|
||||
chrono = { version = "0.4.39", features = ["serde"] }
|
||||
tokio = { version = "1.43.0", default-features = false,features = ["macros", "rt-multi-thread", "time"] }
|
||||
serde = { version = "1.0.217", default-features = false, features = ["derive"] }
|
||||
serde_json = { version = "1.0.135" , default-features = false}
|
||||
axum = { version = "0.8.1", default-features = false, features = ["http2", "json", "tokio"]}
|
||||
chrono = { version = "0.4.39", default-features = false, features = ["serde"] }
|
||||
jwt-simple = { version = "0.12.11", default-features = false, features = ["pure-rust"] }
|
||||
lettre = { version = "0.11.11", default-features = false, features = ["builder", "serde", "smtp-transport", "tokio1-rustls-tls"] }
|
||||
serde = { version = "1.0.216", features = ["derive"] }
|
||||
serde_json = "1.0.133"
|
||||
sqlx = { version = "0.8.2", features = ["chrono", "macros", "postgres", "runtime-tokio-rustls"] }
|
||||
tokio = { version = "1.42.0", features = ["rt-multi-thread"] }
|
||||
tower = { version = "0.5.2", features = ["limit"] }
|
||||
tower-http = { version = "0.6.2", features = ["cors"] }
|
||||
sqlx = { version = "0.8.3", default-features = false, features = ["chrono", "macros", "migrate", "postgres", "runtime-tokio-rustls"] }
|
||||
tower = { version = "0.5.2", default-features = false, features = ["limit"] }
|
||||
tower-http = { version = "0.6.2", default-features = false, features = ["cors"] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue