diff options
Diffstat (limited to 'runtime/Cargo.toml')
-rw-r--r-- | runtime/Cargo.toml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 402d9bb6e..a9ad9b384 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -55,20 +55,21 @@ atty = "0.2.14" dlopen = "0.1.8" encoding_rs = "0.8.28" filetime = "0.2.14" -http = "0.2.3" -hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] } -indexmap = "1.6.2" +http = "0.2.4" +hyper = { version = "0.14.10", features = ["server", "stream", "http1", "http2", "runtime"] } +# TODO(lucacasonato): unlock when https://github.com/tkaitchuck/aHash/issues/95 is resolved +indexmap = "=1.6.2" lazy_static = "1.4.0" -libc = "0.2.93" +libc = "0.2.98" log = "0.4.14" -notify = "5.0.0-pre.7" +notify = "5.0.0-pre.10" percent-encoding = "2.1.0" regex = "1.4.3" ring = "0.16.20" -serde = { version = "1.0.125", features = ["derive"] } +serde = { version = "1.0.126", features = ["derive"] } sys-info = "0.9.0" termcolor = "1.1.2" -tokio = { version = "1.8.0", features = ["full"] } +tokio = { version = "1.8.1", features = ["full"] } uuid = { version = "0.8.2", features = ["v4"] } [target.'cfg(windows)'.dependencies] |