Skip to content

Commit

Permalink
chore: put in one round of small updates
Browse files Browse the repository at this point in the history
Including updating typed-store
  • Loading branch information
huitseeker committed Apr 27, 2022
1 parent 37410be commit 7ea778c
Show file tree
Hide file tree
Showing 9 changed files with 95 additions and 72 deletions.
83 changes: 53 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ license = "Apache-2.0"
publish = false

[dependencies]
anyhow = { version = "1.0.56", features = ["backtrace"] }
async-trait = "0.1.52"
axum = { version = "0.5.3" }
anyhow = { version = "1.0.57", features = ["backtrace"] }
async-trait = "0.1.53"
axum = "0.5.4"
clap = { version = "3.1.8", features = ["derive"] }
futures = "0.3.21"
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["full"] }
tracing = { version = "0.1.31", features = ["log"] }
tracing-subscriber = { version = "0.3.9", features = ["time", "registry", "env-filter"] }
tracing = { version = "0.1.34", features = ["log"] }
tracing-subscriber = { version = "0.3.11", features = ["time", "registry", "env-filter"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
tower = { version = "0.4", features = ["util", "timeout", "load-shed", "limit"] }
tower = { version = "0.4.12", features = ["util", "timeout", "load-shed", "limit"] }

sui = { path = "../sui" }
sui-types = { path = "../sui_types" }
Expand Down
6 changes: 3 additions & 3 deletions network_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ edition = "2021"
[dependencies]
bytes = "1.1.0"
futures = "0.3.21"
async-trait = "0.1.52"
async-trait = "0.1.53"
net2 = "0.2.37"
tokio = { version = "1.17.0", features = ["full"] }
tracing = { version = "0.1.31", features = ["log"] }
tokio-util = { version = "0.7.0", features = ["codec"] }
tracing = { version = "0.1.34", features = ["log"] }
tokio-util = { version = "0.7.1", features = ["codec"] }

sui-types = { path = "../sui_types" }

Expand Down
24 changes: 12 additions & 12 deletions sui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,27 @@ publish = false
edition = "2021"

[dependencies]
rayon = "1.5.1"
anyhow = { version = "1.0.56", features = ["backtrace"] }
rayon = "1.5.2"
anyhow = { version = "1.0.57", features = ["backtrace"] }
bytes = "1.1.0"
futures = "0.3.21"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
tempfile = "3.3.0"
tokio = { version = "1.17.0", features = ["full"] }
rand = "0.8.4"
toml = "0.5.8"
toml = "0.5.9"
strum = "0.24.0"
strum_macros = "0.24.0"
num_cpus = "1.13.1"
base64ct = { version = "1.5.0", features = ["alloc"] }
ed25519-dalek = { version = "1.0.1", features = ["batch", "serde"] }
rocksdb = "0.18.0"
hex = "0.4.3"
async-trait = "0.1.52"
serde_with = { version = "1.12.0", features = ["hex"] }
tracing = { version = "0.1.31", features = ["log"] }
tracing-subscriber = { version = "0.3.9", features = ["time", "registry", "env-filter"] }
async-trait = "0.1.53"
serde_with = { version = "1.13.0", features = ["hex"] }
tracing = { version = "0.1.34", features = ["log"] }
tracing-subscriber = { version = "0.3.11", features = ["time", "registry", "env-filter"] }
serde-value = "0.7.0"
serde-name = "0.2.0"
dirs = "4.0.0"
Expand All @@ -50,7 +50,7 @@ unescape = "0.1.0"
# Deps for rest server
dropshot = "0.6.0"
http = "0.2.6"
hyper = "0.14.17"
hyper = "0.14.18"
schemars = "0.8.8"

move-package = { git = "https://github.com/move-language/move", rev = "6a80792ecbf16d74bf1d57e48a576377f0879646" }
Expand All @@ -64,16 +64,16 @@ narwhal-node = { git = "https://github.com/MystenLabs/narwhal", rev = "8ae2164f0
narwhal-config = { git = "https://github.com/MystenLabs/narwhal", rev = "8ae2164f0510349cbac2770e50e853bce5ab0e02", package = "config" }
narwhal-crypto = { git = "https://github.com/MystenLabs/narwhal", rev = "8ae2164f0510349cbac2770e50e853bce5ab0e02", package = "crypto" }

once_cell = "1.9.0"
once_cell = "1.10.0"
reqwest = { version = "0.11.10", features = ["json", "serde_json", "blocking"] }

jsonrpsee = { version = "0.10.1", features = ["full"] }
jsonrpsee = { version = "0.11.0", features = ["full"] }

jsonrpsee-proc-macros = "0.10.1"
jsonrpsee-proc-macros = "0.11.0"

[dev-dependencies]
tracing-test = "0.2.1"
tokio-util = { version = "0.7.0", features = ["codec"] }
tokio-util = { version = "0.7.1", features = ["codec"] }

test_utils = { path = "../test_utils" }
sui-network = { path = "../network_utils" }
Expand Down
Loading

0 comments on commit 7ea778c

Please sign in to comment.