Updated dependencies, fixed connection drop for banned nodes.

This commit is contained in:
Revertron
2022-06-29 19:02:11 +02:00
parent 7bd7fefc12
commit a13c824f7d
3 changed files with 21 additions and 17 deletions
+5 -5
View File
@@ -33,21 +33,21 @@ base64 = "0.13.0"
num-bigint = "0.4.3"
num-traits = "0.2.15"
chrono = { version = "0.4.19", features = ["serde"] }
time = "0.3.9"
time = "0.3.11"
rand = { version = "0.8.5", package = "rand" }
rand-old = { package = "rand", version = "0.7.0" } # For ed25519-dalek
sqlite = "0.26.0"
uuid = { version = "1.1.1", features = ["serde", "v4"] }
mio = { version = "0.8.3", features = ["os-poll", "net"] }
uuid = { version = "1.1.2", features = ["serde", "v4"] }
mio = { version = "0.8.4", features = ["os-poll", "net"] }
ureq = { version = "2.4", optional = true }
lru = "0.7.6"
lru = "0.7.7"
derive_more = "0.99.17"
lazy_static = "1.4.0"
# Optional dependencies regulated by features
web-view = { version = "0.7.3", features = [], optional = true }
tinyfiledialogs = { version = "3.9.1", optional = true }
open = { version = "2.1.3", optional = true }
open = { version = "3.0.1", optional = true }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["impl-default", "wincon", "shellscalingapi"] }