Skip to content
This repository was archived by the owner on Sep 1, 2023. It is now read-only.

Update Cargo.toml #99

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ blst = "0.3.10" # https://github.com/supranational/blst/tree/master/bindings/rus
bs58 = { version = "0.5.0", features = ["cb58"] }
bytes = "1.4.0"
cert-manager = "0.0.10" # https://github.com/gyuho/cert-manager
chrono = "0.4.24"
chrono = "0.4.26"
cmp-manager = "0.0.1"
ecdsa = { version = "0.16.7", features = ["rfc6979", "verifying"] } # https://github.com/RustCrypto/elliptic-curves/tree/master/k256
ethers-core = { version = "=2.0.6", features = ["eip712"] } # https://github.com/gakonst/ethers-rs/releases
Expand All @@ -32,8 +32,8 @@ rand = "0.8.5"
ring = "0.16.20"
ripemd = "0.1.3"
rust-embed = "6.6.1" # https://github.com/pyrossh/rust-embed
serde = { version = "1.0.163", features = ["derive"] } # https://github.com/serde-rs/serde/releases
serde_json = "1.0.96" # https://github.com/serde-rs/json/releases
serde = { version = "1.0.171", features = ["derive"] } # https://github.com/serde-rs/serde/releases
serde_json = "1.0.102" # https://github.com/serde-rs/json/releases
serde_with = { version = "3.0.0", features = ["hex"] }
serde_yaml = "0.9.21" # https://github.com/dtolnay/serde-yaml/releases
sha2 = "0.10.6"
Expand All @@ -60,15 +60,15 @@ rand_core = { version = "0.6.4", features = ["std"], optional = true }

# [OPTIONAL] for "evm", "jsonrpc_client"
reqwest = { version = "0.11.18", optional = true } # https://github.com/seanmonstar/reqwest/releases
tokio = { version = "1.28.1", features = ["full"], optional = true } # https://github.com/tokio-rs/tokio/releases
tokio = { version = "1.29.1", features = ["full"], optional = true } # https://github.com/tokio-rs/tokio/releases

# [OPTIONAL] for "evm"
rlp = { version = "0.5.2", default-features = false, features = ["std"], optional = true }

# [OPTIONAL] for "wallet_evm"
ethers = { version = "=2.0.6", features = ["eip712"], optional = true } # https://github.com/gakonst/ethers-rs/releases
ethers-providers = { version = "=2.0.6", optional = true } # https://github.com/gakonst/ethers-rs/releases
ethers-signers = { version = "=2.0.6", optional = true } # https://github.com/gakonst/ethers-rs/releases
ethers = { version = "=2.0.7", features = ["eip712"], optional = true } # https://github.com/gakonst/ethers-rs/releases
ethers-providers = { version = "=2.0.7", optional = true } # https://github.com/gakonst/ethers-rs/releases
ethers-signers = { version = "=2.0.7", optional = true } # https://github.com/gakonst/ethers-rs/releases

# [OPTIONAL] for "subnet"
futures = { version = "0.3.28", optional = true }
Expand Down