فهرست منبع

Bump some crates

Signed-off-by: Sean Young <sean@mess.org>
Sean Young 2 سال پیش
والد
کامیت
aef54045bf
2فایلهای تغییر یافته به همراه17 افزوده شده و 17 حذف شده
  1. 13 13
      Cargo.toml
  2. 4 4
      solang-parser/Cargo.toml

+ 13 - 13
Cargo.toml

@@ -19,10 +19,10 @@ regex = "1"
 rand = "0.8"
 num-bigint = { version = "0.4", features = ["rand"]}
 num-traits = "0.2"
-num-integer = "0.1.44"
+num-integer = "0.1"
 parity-wasm = "0.45"
-clap = "4.0"
-clap_complete = "4.0"
+clap = "4.1"
+clap_complete = "4.1"
 hex = "0.4"
 tiny-keccak = { version = "2.0", features = ["keccak"] }
 serde_json = "1.0"
@@ -30,13 +30,13 @@ serde = "1.0"
 serde_derive = { version = "1.0" }
 inkwell = { version = "0.1.0", features = ["target-webassembly", "target-bpf", "no-libffi-linking", "llvm14-0"], optional = true }
 blake2-rfc = "0.2.18"
-handlebars = "4.2"
-contract-metadata = "1.5.0"
-semver = { version = "^1.0.3", features = ["serde"] }
+handlebars = "4.3"
+contract-metadata = "1.5.1"
+semver = { version = "1.0", features = ["serde"] }
 tempfile = "3.3"
 libc = { version = "0.2", optional = true }
 tower-lsp = "0.18"
-tokio = { version = "1.16", features = ["rt", "io-std", "macros"] }
+tokio = { version = "1.25", features = ["rt", "io-std", "macros"] }
 base58 = "0.2.0"
 sha2 = "0.10"
 ripemd = "0.1"
@@ -44,17 +44,17 @@ bitvec = "1"
 funty = "2.0"
 itertools = "0.10"
 num-rational = "0.4"
-indexmap = "1.8"
-once_cell = "1.16"
+indexmap = "1.9"
+once_cell = "1.17"
 solang-parser = { path = "solang-parser", version = "0.2.1" }
 codespan-reporting = "0.11"
 phf = { version = "0.11", features = ["macros"] }
-rust-lapper = "1.0"
+rust-lapper = "1.1"
 bitflags = "1.3"
 anchor-syn = { version = "0.26", features = ["idl"] }
 convert_case = "0.6"
 parse-display = "0.8.0"
-parity-scale-codec = "3.1"
+parity-scale-codec = "3.3"
 ink = "4.0.0-beta.1"
 scale-info = "2.3"
 
@@ -72,8 +72,8 @@ assert_cmd = "2.0"
 bincode = "1.3"
 ed25519-dalek = "1.0"
 path-slash = "0.2"
-pretty_assertions = "1.2"
-byte-slice-cast = "1.2.1"
+pretty_assertions = "1.3"
+byte-slice-cast = "1.2"
 borsh = "0.10"
 rayon = "1"
 

+ 4 - 4
solang-parser/Cargo.toml

@@ -16,14 +16,14 @@ lalrpop = "0.19"
 [dependencies]
 lalrpop-util = "0.19"
 phf = { version = "0.11", features = ["macros"] }
-unicode-xid = "0.2.0"
+unicode-xid = "0.2"
 itertools = "0.10"
-serde = { version = "1.0.145", features = ["derive"], optional = true }
+serde = { version = "1.0", features = ["derive"], optional = true }
 
 [dev-dependencies]
 walkdir = "2.3.2"
-regex = "1.5.5"
-pretty_assertions = "1.2"
+regex = "1"
+pretty_assertions = "1.3"
 
 [features]
 default = []