mirror of
https://gitlab.com/marcandre.lureau/qemu-display.git
synced 2024-12-22 05:35:20 +00:00
Bump Cargo.lock
This commit is contained in:
parent
a023b5e3d7
commit
9bb790584e
1261
Cargo.lock
generated
1261
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -15,28 +15,28 @@ zbus.workspace = true
|
||||
cfg-if = "1.0"
|
||||
derivative = "2.2.0"
|
||||
zvariant = { version = "4", features = ["serde_bytes"] }
|
||||
libc = "0.2.86"
|
||||
libc = "0.2.155"
|
||||
enumflags2 = { version = "0.7", features = ["serde"] }
|
||||
serde = { version = "1.0.27", features = ["derive"] }
|
||||
serde_repr = "0.1.6"
|
||||
serde_bytes = "0.11.5"
|
||||
futures-util = { version = "0.3.8", features = ["async-await-macro"] }
|
||||
once_cell = "1.5"
|
||||
futures = "0.3.13"
|
||||
usbredirhost = "0.0.1"
|
||||
serde = { version = "1.0.202", features = ["derive"] }
|
||||
serde_repr = "0.1.19"
|
||||
serde_bytes = "0.11.14"
|
||||
futures-util = { version = "0.3.30", features = ["async-await-macro"] }
|
||||
once_cell = "1.19"
|
||||
futures = "0.3.30"
|
||||
usbredirhost = "0.2"
|
||||
async-broadcast = "0.7"
|
||||
async-trait = "0.1.77"
|
||||
async-trait = "0.1.80"
|
||||
async-lock = "3.3.0"
|
||||
qapi = { version = "0.9.0", features = ["qmp"], optional = true }
|
||||
base64 = { version = "0.13", optional = true }
|
||||
qapi = { version = "0.14", features = ["qmp"], optional = true }
|
||||
base64 = { version = "0.22.1", optional = true }
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
uds_windows = "1.0.2"
|
||||
uds_windows = "1.1.0"
|
||||
windows = { version = "0.43.0", features = ["Win32_Networking_WinSock", "Win32_Foundation", "Win32_System_IO", "Win32_System_Threading"] }
|
||||
|
||||
[target.'cfg(windows)'.dev-dependencies]
|
||||
async-std = { version = "1.12.0", features = ["attributes"] }
|
||||
tracing-subscriber = { version = "0.3.11", features = ["env-filter" , "fmt"], default-features = false }
|
||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter" , "fmt"], default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
pixman-sys.workspace = true
|
||||
|
@ -9,15 +9,15 @@ edition = "2021"
|
||||
[dependencies]
|
||||
qemu-display = { path = "../qemu-display" }
|
||||
tracing.workspace = true
|
||||
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||||
keycodemap = { path = "../keycodemap" }
|
||||
bytes = "1.4"
|
||||
bytes = "1.6"
|
||||
pixman-sys = "0.1.0"
|
||||
rustls = { version = "0.21" }
|
||||
rustls-pemfile = "1.0"
|
||||
tokio = { version = "1.28", features = ["full"] }
|
||||
tokio = { version = "1.37", features = ["full"] }
|
||||
tokio-rustls = "0.24"
|
||||
anyhow = "1.0"
|
||||
clap = { version = "4.2", features = ["derive", "cargo"] }
|
||||
clap = { version = "4.5", features = ["derive", "cargo"] }
|
||||
async-trait = "0.1"
|
||||
ironrdp = { git = "https://github.com/Devolutions/IronRDP", features = ["server", "svc", "cliprdr"] }
|
||||
|
@ -11,19 +11,19 @@ qmp = ["qemu-display/qmp"]
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
pretty_env_logger = "0.4"
|
||||
once_cell = "1.5"
|
||||
once_cell = "1.19"
|
||||
zbus.workspace = true
|
||||
qemu-display.workspace = true
|
||||
keycodemap.workspace = true
|
||||
futures-util = "0.3"
|
||||
futures = "0.3"
|
||||
async-trait = "0.1"
|
||||
tracing-subscriber = { version = "0.3.11", features = ["env-filter" , "fmt"], default-features = false }
|
||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter" , "fmt"], default-features = false }
|
||||
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
rdw = { package = "rdw4", version = "0.1", features = ["bindings"] }
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
uds_windows = "1.0.2"
|
||||
uds_windows = "1.1.0"
|
||||
windows = { version = "0.43.0", features = ["Win32_System_Memory", "Win32_Foundation"] }
|
||||
rdw = { package = "rdw4", version = "0.1", features = ["bindings"], default-features = false }
|
||||
|
@ -12,8 +12,8 @@ keycodemap.workspace = true
|
||||
vnc = "0.4.0"
|
||||
clap = { version = "3.2", features = ["derive"] }
|
||||
zbus.workspace = true
|
||||
libc = "0.2.86"
|
||||
libc = "0.2.155"
|
||||
image = "0.23.14"
|
||||
derivative = "2.2.0"
|
||||
async-io = "1.3.1"
|
||||
async-trait = "0.1.48"
|
||||
async-io = "1.13.0"
|
||||
async-trait = "0.1.80"
|
||||
|
@ -6,10 +6,10 @@ edition = "2018"
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
pretty_env_logger = "0.4"
|
||||
once_cell = "1.5"
|
||||
once_cell = "1.19"
|
||||
zbus.workspace = true
|
||||
qemu-display.workspace = true
|
||||
futures = "0.3.13"
|
||||
futures = "0.3.30"
|
||||
|
||||
[dependencies.vte]
|
||||
package = "vte4"
|
||||
|
@ -7,4 +7,4 @@ edition = "2018"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
xshell = "0.1.8"
|
||||
xshell = "0.1.17"
|
||||
|
Loading…
Reference in New Issue
Block a user