chore: update cargo crates
Some checks are pending
Install / Cargo install on ubuntu-latest (push) Waiting to run

This commit is contained in:
Jesús Pérez 2024-09-30 14:45:06 +01:00
parent 01b179830d
commit d5cf863435
No known key found for this signature in database

View File

@ -1,13 +1,12 @@
[package] [package]
name = "docserver" name = "docserver"
version = "0.1.1" version = "0.1.2"
edition = "2021" edition = "2021"
authors = ["Jesus Perez <Jesus.Perez@tii.ae>"] authors = ["Jesus Perez <jpl@jesusperez.proJ>"]
#publish = false publish = false
publish = true
[registry] #[registry]
default = "inrepo" #default = "inrepo"
#[package.metadata.docs.rs] #[package.metadata.docs.rs]
#all-features = true #all-features = true
@ -15,11 +14,10 @@ default = "inrepo"
[dependencies] [dependencies]
log = { version = "0.4.22", features = ["max_level_trace","release_max_level_trace"], package = "log" } log = { version = "0.4.22", features = ["max_level_trace","release_max_level_trace"], package = "log" }
#axum = { git = "https://github.com/tokio-rs/axum.git", branch = "main" }
axum = { version = "0.7.5" } # use wrks axum_6 axum = { version = "0.7.5" } # use wrks axum_6
axum-server = { version = "0.7.1", features = ["tls-rustls"] } axum-server = { version = "0.7.1", features = ["tls-rustls"] }
tokio = { version = "1.39.2", features = ["full"] } tokio = { version = "1.39.2", features = ["full"] }
tower = { version = "0.5.0", features = ["util", "filter"] } tower = { version = "0.5.1", features = ["util", "filter"] }
tower-http = { version = "0.5.2", features = ["fs", "cors", "trace", "add-extension", "auth", "compression-full"] } tower-http = { version = "0.5.2", features = ["fs", "cors", "trace", "add-extension", "auth", "compression-full"] }
tower-cookies = "0.10.0" tower-cookies = "0.10.0"
tracing = "0.1.40" tracing = "0.1.40"
@ -27,7 +25,7 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
casbin = { version = "2.2.0", features = ["cached","explain","logging"], optional = true} casbin = { version = "2.2.0", features = ["cached","explain","logging"], optional = true}
pasetoken-lib= {path = "./pasetoken", package = "pasetoken-lib" } pasetoken-lib= {path = "./pasetoken", package = "pasetoken-lib" }
pasetors = { version = "0.6.8" } pasetors = { version = "0.7.0" }
serde = { version = "1.0.207", features = ["derive"] } serde = { version = "1.0.207", features = ["derive"] }
serde_derive = "1.0.207" serde_derive = "1.0.207"
@ -66,10 +64,7 @@ base32 = "0.5.1"
zxcvbn = "3.1.0" zxcvbn = "3.1.0"
futures= "0.3.30" futures= "0.3.30"
#sqlx = { version = "0.8.0", features = ["sqlite", "runtime-tokio-native-tls"] } # async-sqlx-session supported until 0.6.2 For 0.8.2 dependencie has to be fixed
#sqlx = { version = "0.8", features = [ "runtime-tokio", "tls-native-tls" ] }
#sqlx = { version = "0.8.0", features = ["all-types", "all-databases","runtime-tokio-native-tls"] }
# async-sqlx-session 0.4.0 still running in 0.6.2
sqlx = { version = "0.6.3", features = ["all-databases","runtime-tokio-native-tls"] } sqlx = { version = "0.6.3", features = ["all-databases","runtime-tokio-native-tls"] }
openidconnect = { version = "3.3.1", default-features = true, features = [] } openidconnect = { version = "3.3.1", default-features = true, features = [] }