chore: Cargo update
This commit is contained in:
parent
7ef1619c03
commit
49f542b009
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,5 +1,5 @@
|
|||||||
sitehome
|
/sitehome
|
||||||
config
|
/config
|
||||||
target
|
target
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
name = "docserver"
|
name = "docserver"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
authors = ["Jesus Perez <Jesus.Perez@tii.ae>"]
|
||||||
#publish = false
|
#publish = false
|
||||||
publish = true
|
publish = true
|
||||||
|
|
||||||
@ -15,8 +16,9 @@ default = "inrepo"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
log = { version = "0.4.19", features = ["max_level_trace","release_max_level_trace"], package = "log" }
|
log = { version = "0.4.19", features = ["max_level_trace","release_max_level_trace"], package = "log" }
|
||||||
axum = { git = "https://github.com/tokio-rs/axum.git", branch = "main" }
|
axum = { git = "https://github.com/tokio-rs/axum.git", branch = "main" }
|
||||||
|
#axum = { version = "0.6.20" } # use wrks axum_6
|
||||||
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
|
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
|
||||||
tokio = { version = "1.29.1", features = ["full"] }
|
tokio = { version = "1.30.0", features = ["full"] }
|
||||||
tower = { version = "0.4.13", features = ["util", "filter"] }
|
tower = { version = "0.4.13", features = ["util", "filter"] }
|
||||||
tower-http = { version = "0.4.1", features = ["fs", "cors", "trace", "add-extension", "auth", "compression-full"] }
|
tower-http = { version = "0.4.1", features = ["fs", "cors", "trace", "add-extension", "auth", "compression-full"] }
|
||||||
tower-cookies = "0.9"
|
tower-cookies = "0.9"
|
||||||
@ -63,6 +65,7 @@ base32 = "0.4.0"
|
|||||||
zxcvbn = "2.2.2"
|
zxcvbn = "2.2.2"
|
||||||
|
|
||||||
futures= "0.3.28"
|
futures= "0.3.28"
|
||||||
|
# async-sqlx-session 0.4.0 still running in 0.6.2
|
||||||
sqlx = { version = "0.6.3", features = ["all-types", "all-databases","runtime-tokio-native-tls"] }
|
sqlx = { version = "0.6.3", features = ["all-types", "all-databases","runtime-tokio-native-tls"] }
|
||||||
#sqlx = { version = "0.7.1", features = ["all-databases","runtime-tokio-native-tls"] }
|
#sqlx = { version = "0.7.1", features = ["all-databases","runtime-tokio-native-tls"] }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user