Skip to content

Commit

Permalink
build(deps): dependencies batch update
Browse files Browse the repository at this point in the history
  • Loading branch information
CBenoit committed Aug 8, 2023
1 parent 90161ba commit b74b203
Show file tree
Hide file tree
Showing 9 changed files with 416 additions and 343 deletions.
710 changes: 392 additions & 318 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ lto = true

[patch.crates-io]
tracing-appender = { git = "https://github.com/CBenoit/tracing.git", rev = "454313f66da3a662" }
tokio-tungstenite = { git = "https://github.com/snapview/tokio-tungstenite.git", rev = "a6c2d13e1f4919c" }
2 changes: 1 addition & 1 deletion crates/devolutions-gateway-generators/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ publish = false
devolutions-gateway = { path = "../../devolutions-gateway" }
proptest = "1.2.0"
uuid = "1.4.1"
serde = { version = "1.0.179", features = ["derive"] }
serde = { version = "1.0.183", features = ["derive"] }
12 changes: 6 additions & 6 deletions crates/jet-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ http = "0.2.9"
[dev-dependencies]
lazy_static = "1.4.0"
bytes = "1.4.0"
sspi = "0.8.1"
sspi = "0.10.0"
ureq = { version = "2.7.1", features = ["json"] }
url = "2.4.0"
x509-parser = "0.15.0"
x509-parser = "0.15.1"
exitcode = "1.1.2"
tempfile = "3.6.0"
tempfile = "3.7.1"
hex-literal = "0.4.1"
tokio-rustls = { version = "0.24", features = ["dangerous_configuration", "tls12"] }
serde = "1.0.179"
serde_derive = "1.0.164"
serde_json = "1.0.97"
serde = "1.0.183"
serde_derive = "1.0.183"
serde_json = "1.0.104"
2 changes: 1 addition & 1 deletion crates/mock-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false

[dependencies]
tokio = { version = "1.29.1", features = ["io-util", "sync"] }
loom = { version = "0.6.1", features = ["futures", "checkpoint"] }
loom = { version = "0.7.0", features = ["futures", "checkpoint"] }
lazy_static = "1.4.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
[dependencies]
transport = { path = "../transport" }
tokio = { version = "1.29.1", features = ["io-util"] }
tokio-tungstenite = "0.19.0"
tokio-tungstenite = "0.20.0"
futures-util = "0.3.28"
proptest = "1.2.0"
anyhow = "1.0.72"
Expand Down
24 changes: 12 additions & 12 deletions devolutions-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ devolutions-gateway-task = { path = "../crates/devolutions-gateway-task" }
ironrdp-pdu = { version = "0.1.0", git = "https://github.com/Devolutions/IronRDP", rev = "4844e77b7f65024d85ba74b1824013eda6eb32b2" }
ironrdp-rdcleanpath = { version = "0.1.0", git = "https://github.com/Devolutions/IronRDP", rev = "4844e77b7f65024d85ba74b1824013eda6eb32b2" }
ceviche = "0.5.2"
picky-krb = "0.6.0"
picky-krb = "0.7.1"

# Serialization
serde = "1.0.179"
serde_derive = "1.0.164"
serde_json = "1.0.97"
serde = "1.0.183"
serde_derive = "1.0.183"
serde_json = "1.0.104"
serde_urlencoded = "0.7.1"

# Utils, misc
Expand All @@ -45,13 +45,13 @@ chrono = { version = "0.4.26", features = ["serde"] } # TODO: switch to `time`
parking_lot = "0.12.1"
anyhow = "1.0.72"
thiserror = "1"
typed-builder = "0.14.0"
typed-builder = "0.15.2"
backoff = "0.4.0"

# Security, crypto…
zeroize = { version = "1.6.0", features = ["derive"] }
picky = { version = "7.0.0-rc.6", default-features = false, features = ["jose", "x509"] }
x509-cert = { version = "0.2.3", features = ["std"] }
picky = { version = "7.0.0-rc.7", default-features = false, features = ["jose", "x509"] }
x509-cert = { version = "0.2.4", features = ["std"] }
multibase = "0.9.1"

# Logging
Expand All @@ -71,12 +71,12 @@ ngrok = "0.12.4"

# HTTP
hyper = "0.14.27"
axum = { version = "0.6.19", default-features = false, features = ["http1", "json", "ws", "query", "tracing", "tower-log", "headers"] }
axum-extra = { version = "0.7.4", features = ["query", "async-read-body"] }
tower-http = { version = "0.4.1", features = ["cors", "fs"] }
axum = { version = "0.6.20", default-features = false, features = ["http1", "json", "ws", "query", "tracing", "tower-log", "headers"] }
axum-extra = { version = "0.7.7", features = ["query", "async-read-body"] }
tower-http = { version = "0.4.3", features = ["cors", "fs"] }

# OpenAPI generator
utoipa = { version = "3.3.0", default-features = false, features = ["uuid", "chrono"], optional = true }
utoipa = { version = "3.4.4", default-features = false, features = ["uuid", "chrono"], optional = true }

# Safe pin projection
pin-project-lite = "0.2.11"
Expand All @@ -94,7 +94,7 @@ packet = { git = "https://github.com/fdubois1/rust-packet.git" }
portpicker = "0.1.1"

[target.'cfg(windows)'.build-dependencies]
embed-resource = "2.1.1"
embed-resource = "2.2.0"

[dev-dependencies]
tokio-test = "0.4.2"
Expand Down
4 changes: 2 additions & 2 deletions jetsocat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ humantime = "2.1.0"

# async
tokio = { version = "1.29.1", features = ["io-std", "io-util", "net", "fs", "time", "rt", "sync", "process", "rt-multi-thread", "macros"] }
tokio-tungstenite = "0.19.0"
tokio-tungstenite = "0.20.0"
futures-util = "0.3.28"
transport = { path = "../crates/transport" }

Expand All @@ -50,7 +50,7 @@ anyhow = "1.0.72"
dirs-next = "2.0.0"

# find parent process / watch process
sysinfo = { version = "0.29.2", default-features = false }
sysinfo = { version = "0.29.7", default-features = false }

[dev-dependencies]
test-utils = { path = "../crates/test-utils" }
Expand Down
2 changes: 1 addition & 1 deletion tools/generate-openapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ publish = false

[dependencies]
devolutions-gateway = { path = "../../devolutions-gateway", features = ["openapi"] }
utoipa = { version = "3.3.0", default-features = false, features = ["uuid", "chrono", "yaml"] }
utoipa = { version = "3.4.4", default-features = false, features = ["uuid", "chrono", "yaml"] }

0 comments on commit b74b203

Please sign in to comment.