mirror of
https://github.com/GiriNeko/hbb_common.git
synced 2025-12-16 21:37:27 +00:00
tokio 1.44
This commit is contained in:
parent
5921946f75
commit
a26f25a045
1 changed files with 15 additions and 14 deletions
29
Cargo.toml
29
Cargo.toml
|
|
@ -7,14 +7,14 @@ edition = "2018"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
flexi_logger = { version = "0.27", features = ["async"] }
|
flexi_logger = { version = "0.30", features = ["async"] }
|
||||||
protobuf = { version = "3.4", features = ["with-bytes"] }
|
protobuf = { version = "3.7", features = ["with-bytes"] }
|
||||||
tokio = { version = "1.38", features = ["full"] }
|
tokio = { version = "1.44", features = ["full"] }
|
||||||
tokio-util = { version = "0.7", features = ["full"] }
|
tokio-util = { version = "0.7", features = ["full"] }
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
bytes = { version = "1.6", features = ["serde"] }
|
bytes = { version = "1.10", features = ["serde"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
env_logger = "0.10"
|
env_logger = "0.11"
|
||||||
socket2 = { version = "0.3", features = ["reuseport"] }
|
socket2 = { version = "0.3", features = ["reuseport"] }
|
||||||
zstd = "0.13"
|
zstd = "0.13"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
|
@ -24,26 +24,27 @@ rand = "0.8"
|
||||||
serde_derive = "1.0"
|
serde_derive = "1.0"
|
||||||
serde = "1.0"
|
serde = "1.0"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.5"
|
||||||
confy = { git = "https://github.com/rustdesk-org/confy" }
|
confy = { git = "https://github.com/rustdesk-org/confy" }
|
||||||
dirs-next = "2.0"
|
dirs-next = "2.0"
|
||||||
filetime = "0.2"
|
filetime = "0.2"
|
||||||
sodiumoxide = "0.2"
|
sodiumoxide = "0.2"
|
||||||
regex = "1.8"
|
regex = "1.11"
|
||||||
tokio-socks = { git = "https://github.com/rustdesk-org/tokio-socks" }
|
tokio-socks = { git = "https://github.com/rustdesk-org/tokio-socks" }
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
backtrace = "0.3"
|
backtrace = "0.3"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
dlopen = "0.1"
|
dlopen = "0.1"
|
||||||
toml = "0.7"
|
toml = "0.7"
|
||||||
uuid = { version = "1.3", features = ["v4"] }
|
uuid = { version = "1.16", features = ["v4"] }
|
||||||
# new sysinfo issue: https://github.com/rustdesk/rustdesk/pull/6330#issuecomment-2270871442
|
# new sysinfo issue: https://github.com/rustdesk/rustdesk/pull/6330#issuecomment-2270871442
|
||||||
sysinfo = { git = "https://github.com/rustdesk-org/sysinfo", branch = "rlim_max" }
|
sysinfo = { git = "https://github.com/rustdesk-org/sysinfo", branch = "rlim_max" }
|
||||||
thiserror = "1.0"
|
thiserror = "2.0"
|
||||||
httparse = "1.5"
|
httparse = "1.10"
|
||||||
base64 = "0.22"
|
base64 = "0.22"
|
||||||
url = "2.2"
|
url = "2.5"
|
||||||
sha2 = "0.10"
|
sha2 = "0.10"
|
||||||
|
tokio-tungstenite = "0.26"
|
||||||
|
|
||||||
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
||||||
mac_address = "1.1"
|
mac_address = "1.1"
|
||||||
|
|
@ -51,13 +52,13 @@ default_net = { git = "https://github.com/rustdesk-org/default_net" }
|
||||||
machine-uid = { git = "https://github.com/rustdesk-org/machine-uid" }
|
machine-uid = { git = "https://github.com/rustdesk-org/machine-uid" }
|
||||||
[target.'cfg(not(any(target_os = "macos", target_os = "windows")))'.dependencies]
|
[target.'cfg(not(any(target_os = "macos", target_os = "windows")))'.dependencies]
|
||||||
tokio-rustls = { version = "0.26", features = ["logging", "tls12", "ring"], default-features = false }
|
tokio-rustls = { version = "0.26", features = ["logging", "tls12", "ring"], default-features = false }
|
||||||
rustls-platform-verifier = "0.3.1"
|
rustls-platform-verifier = "0.5"
|
||||||
rustls-pki-types = "1.4"
|
rustls-pki-types = "1.11"
|
||||||
[target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies]
|
[target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies]
|
||||||
tokio-native-tls ="0.3"
|
tokio-native-tls ="0.3"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
protobuf-codegen = { version = "3.4" }
|
protobuf-codegen = { version = "3.7" }
|
||||||
|
|
||||||
[target.'cfg(target_os = "windows")'.dependencies]
|
[target.'cfg(target_os = "windows")'.dependencies]
|
||||||
winapi = { version = "0.3", features = ["winuser", "synchapi", "pdh", "memoryapi", "sysinfoapi"] }
|
winapi = { version = "0.3", features = ["winuser", "synchapi", "pdh", "memoryapi", "sysinfoapi"] }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue