diff options
Diffstat (limited to '')
-rw-r--r-- | dhall/Cargo.toml | 6 | ||||
-rw-r--r-- | dhall_proc_macros/Cargo.toml | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml index 90374b6..0d1c569 100644 --- a/dhall/Cargo.toml +++ b/dhall/Cargo.toml @@ -11,14 +11,14 @@ build = "build.rs" [dependencies] annotate-snippets = "0.6.1" -itertools = "0.8.0" -hex = "0.3.2" +itertools = "0.9.0" +hex = "0.4.2" lazy_static = "1.4.0" once_cell = "1.3.1" percent-encoding = "2.1.0" pest = "2.1" pest_consume = "1.0" -reqwest = { version = "0.10.3", features = ["blocking"] } +reqwest = { version = "0.10", features = ["blocking"] } serde = "1.0" serde_cbor = "0.9.0" smallvec = "1.0.0" diff --git a/dhall_proc_macros/Cargo.toml b/dhall_proc_macros/Cargo.toml index ef8ae6c..6d8ac63 100644 --- a/dhall_proc_macros/Cargo.toml +++ b/dhall_proc_macros/Cargo.toml @@ -13,7 +13,7 @@ proc-macro = true doctest = false [dependencies] -itertools = "0.8.0" -quote = "1.0.2" -proc-macro2 = "1.0.2" -syn = "1.0.5" +itertools = "0.9.0" +quote = "1.0" +proc-macro2 = "1.0" +syn = "1.0" |