You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-08-09 04:22:45 +03:00
Upgrade dependencies
This commit is contained in:
@@ -9,16 +9,16 @@ license = "Apache-2.0"
|
||||
tokio = { version = "1.14.0", features = ["full"] }
|
||||
futures = "0.3.18"
|
||||
anyhow = "1.0.51"
|
||||
clap = "3.0.0-beta.5"
|
||||
clap = { version = "3.0.0-rc.1", features = ["derive"] }
|
||||
dotenv = "0.15.0"
|
||||
schemars = { version = "0.8.8", features = ["url", "chrono"] }
|
||||
tower = { version = "0.4.11", features = ["full"] }
|
||||
tower-http = { version = "0.2.0", features = ["full"] }
|
||||
hyper = { version = "0.14.15", features = ["full"] }
|
||||
hyper = { version = "0.14.16", features = ["full"] }
|
||||
serde_yaml = "0.8.21"
|
||||
warp = "0.3.2"
|
||||
url = "2.2.2"
|
||||
argon2 = { version = "0.3.1", features = ["password-hash"] }
|
||||
argon2 = { version = "0.3.2", features = ["password-hash"] }
|
||||
reqwest = { version = "0.11.7", features = ["rustls-tls"], default-features = false, optional = true }
|
||||
|
||||
tracing = "0.1.29"
|
||||
|
@@ -8,7 +8,7 @@ license = "Apache-2.0"
|
||||
[dependencies]
|
||||
tokio = { version = "1.14.0", features = [] }
|
||||
tracing = { version = "0.1.29", features = ["log"] }
|
||||
async-trait = "0.1.51"
|
||||
async-trait = "0.1.52"
|
||||
|
||||
thiserror = "1.0.30"
|
||||
anyhow = "1.0.51"
|
||||
@@ -18,7 +18,7 @@ figment = { version = "0.10.6", features = ["env", "yaml", "test"] }
|
||||
chrono = { version = "0.4.19", features = ["serde"] }
|
||||
url = { version = "2.2.2", features = ["serde"] }
|
||||
|
||||
serde = { version = "1.0.130", features = ["derive"] }
|
||||
serde = { version = "1.0.131", features = ["derive"] }
|
||||
serde_with = { version = "1.11.0", features = ["hex", "chrono"] }
|
||||
serde_json = "1.0.72"
|
||||
sqlx = { version = "0.5.9", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
|
@@ -11,7 +11,7 @@ dev = ["mas-static-files/dev", "mas-templates/dev"]
|
||||
[dependencies]
|
||||
# Async runtime
|
||||
tokio = { version = "1.14.0", features = ["full"] }
|
||||
async-trait = "0.1.51"
|
||||
async-trait = "0.1.52"
|
||||
tokio-stream = "0.1.8"
|
||||
futures-util = "0.3.18"
|
||||
|
||||
@@ -25,19 +25,19 @@ anyhow = "1.0.51"
|
||||
|
||||
# Web server
|
||||
warp = "0.3.2"
|
||||
hyper = { version = "0.14.15", features = ["full"] }
|
||||
hyper = { version = "0.14.16", features = ["full"] }
|
||||
|
||||
# Database access
|
||||
sqlx = { version = "0.5.9", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline"] }
|
||||
|
||||
# Various structure (de)serialization
|
||||
serde = { version = "1.0.130", features = ["derive"] }
|
||||
serde = { version = "1.0.131", features = ["derive"] }
|
||||
serde_with = { version = "1.11.0", features = ["hex", "chrono"] }
|
||||
serde_json = "1.0.72"
|
||||
serde_urlencoded = "0.7.0"
|
||||
|
||||
# Password hashing
|
||||
argon2 = { version = "0.3.1", features = ["password-hash"] }
|
||||
argon2 = { version = "0.3.2", features = ["password-hash"] }
|
||||
password-hash = { version = "0.3.2", features = ["std"] }
|
||||
|
||||
# Crypto, hashing and signing stuff
|
||||
@@ -46,7 +46,7 @@ k256 = "0.9.6"
|
||||
pkcs8 = { version = "0.7.6", features = ["pem"] }
|
||||
elliptic-curve = { version = "0.10.6", features = ["pem"] }
|
||||
chacha20poly1305 = { version = "0.9.0", features = ["std"] }
|
||||
sha2 = "0.9.8"
|
||||
sha2 = "0.10.0"
|
||||
crc = "2.1.0"
|
||||
jwt-compact = { version = "0.5.0-beta.1", features = ["with_rsa", "k256"] }
|
||||
|
||||
@@ -54,7 +54,7 @@ jwt-compact = { version = "0.5.0-beta.1", features = ["with_rsa", "k256"] }
|
||||
data-encoding = "2.3.2"
|
||||
chrono = { version = "0.4.19", features = ["serde"] }
|
||||
url = { version = "2.2.2", features = ["serde"] }
|
||||
itertools = "0.10.1"
|
||||
itertools = "0.10.3"
|
||||
mime = "0.3.16"
|
||||
rand = "0.8.4"
|
||||
bincode = "1.3.3"
|
||||
|
@@ -8,7 +8,7 @@ license = "Apache-2.0"
|
||||
[dependencies]
|
||||
chrono = "0.4.19"
|
||||
thiserror = "1.0.30"
|
||||
serde = "1.0.130"
|
||||
serde = "1.0.131"
|
||||
url = { version = "2.2.2", features = ["serde"] }
|
||||
|
||||
oauth2-types = { path = "../oauth2-types" }
|
||||
|
@@ -7,7 +7,7 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
http = "0.2.5"
|
||||
serde = "1.0.130"
|
||||
serde = "1.0.131"
|
||||
serde_json = "1.0.72"
|
||||
language-tags = { version = "0.3.2", features = ["serde"] }
|
||||
url = { version = "2.2.2", features = ["serde"] }
|
||||
@@ -16,10 +16,10 @@ indoc = "1.0.3"
|
||||
serde_with = { version = "1.11.0", features = ["chrono"] }
|
||||
sqlx = { version = "0.5.9", default-features = false, optional = true }
|
||||
chrono = "0.4.19"
|
||||
sha2 = "0.9.8"
|
||||
sha2 = "0.10.0"
|
||||
data-encoding = "2.3.2"
|
||||
thiserror = "1.0.30"
|
||||
itertools = "0.10.1"
|
||||
itertools = "0.10.3"
|
||||
|
||||
[features]
|
||||
sqlx_type = ["sqlx"]
|
||||
|
@@ -16,7 +16,7 @@ anyhow = "1.0.51"
|
||||
thiserror = "1.0.30"
|
||||
|
||||
tera = "1.15.0"
|
||||
serde = { version = "1.0.130", features = ["derive"] }
|
||||
serde = { version = "1.0.131", features = ["derive"] }
|
||||
serde_json = "1.0.72"
|
||||
|
||||
url = "2.2.2"
|
||||
|
Reference in New Issue
Block a user