11[package ]
22name = " avalanche-types"
3- version = " 0.0.397 " # https://crates.io/crates/avalanche-types
3+ version = " 0.0.400 " # https://crates.io/crates/avalanche-types
44edition = " 2021"
5- rust-version = " 1.69 " # use "rustup override set stable" to overwrite current toolchain
5+ rust-version = " 1.70 " # use "rustup override set stable" to overwrite current toolchain
66publish = true
77description = " Avalanche primitive types in Rust"
88license = " BSD-3-Clause"
@@ -20,9 +20,10 @@ cert-manager = "0.0.10" # https://github.com/gyuho/cert-manager
2020chrono = " 0.4.24"
2121cmp-manager = " 0.0.1"
2222ecdsa = { version = " 0.16.7" , features = [" rfc6979" , " verifying" ] } # https://github.com/RustCrypto/elliptic-curves/tree/master/k256
23- ethers-core = { version = " =2.0.6 " , features = [" eip712" ] } # https://github.com/gakonst/ethers-rs/releases
23+ ethers-core = { version = " =2.0.7 " , features = [" eip712" ] } # https://github.com/gakonst/ethers-rs/releases
2424hex = " 0.4.3"
2525hmac = " 0.12.1"
26+ hyper = { version = " 0.14.26" }
2627k256 = { version = " 0.13.1" , features = [" ecdsa" ] } # https://github.com/RustCrypto/elliptic-curves/tree/master/k256
2728lazy_static = " 1.4.0"
2829log = " 0.4.17"
@@ -31,14 +32,15 @@ primitive-types = { version = "0.12.1", features = ["impl-serde"] } # https://cr
3132rand = " 0.8.5"
3233ring = " 0.16.20"
3334ripemd = " 0.1.3"
34- rust-embed = " 6.6 .1" # https://github.com/pyrossh/rust-embed
35- serde = { version = " 1.0.163 " , features = [" derive" ] } # https://github.com/serde-rs/serde/releases
35+ rust-embed = " 6.8 .1" # https://github.com/pyrossh/rust-embed
36+ serde = { version = " 1.0.166 " , features = [" derive" ] } # https://github.com/serde-rs/serde/releases
3637serde_json = " 1.0.96" # https://github.com/serde-rs/json/releases
3738serde_with = { version = " 3.0.0" , features = [" hex" ] }
3839serde_yaml = " 0.9.21" # https://github.com/dtolnay/serde-yaml/releases
3940sha2 = " 0.10.6"
4041sha3 = " 0.10.8" # https://github.com/RustCrypto/hashes
4142spki = " 0.7.2" # https://github.com/RustCrypto/formats/tree/master/spki
43+ strum = " 0.24.1"
4244thiserror = " 1.0.40"
4345url = " 2.3.1" # for "codec::serde::ip_port", "utils"
4446zerocopy = " 0.6.1"
@@ -48,7 +50,7 @@ zeroize = "1.6.0" # for "BLS
4850secp256k1 = { version = " 0.27.0" , features = [" global-context" , " rand-std" , " recovery" ], optional = true } # https://crates.io/crates/secp256k1
4951
5052# [OPTIONAL] for "kms_aws"
51- aws-manager = { version = " 0.28.26 " , features = [" kms" ], optional = true } # https://github.com/gyuho/aws-manager/tags
53+ aws-manager = { version = " 0.28.67 " , features = [" kms" ], optional = true } # https://github.com/gyuho/aws-manager/tags
5254aws-sdk-kms = { version = " 0.28.0" , optional = true } # https://crates.io/crates/aws-sdk-kms/versions
5355
5456# [OPTIONAL] for "message"
@@ -60,20 +62,19 @@ rand_core = { version = "0.6.4", features = ["std"], optional = true }
6062
6163# [OPTIONAL] for "evm", "jsonrpc_client"
6264reqwest = { version = " 0.11.18" , optional = true } # https://github.com/seanmonstar/reqwest/releases
63- tokio = { version = " 1.28 .1" , features = [" full" ], optional = true } # https://github.com/tokio-rs/tokio/releases
65+ tokio = { version = " 1.29 .1" , features = [" full" ], optional = true } # https://github.com/tokio-rs/tokio/releases
6466
6567# [OPTIONAL] for "evm"
6668rlp = { version = " 0.5.2" , default-features = false , features = [" std" ], optional = true }
6769
6870# [OPTIONAL] for "wallet_evm"
69- ethers = { version = " =2.0.6 " , features = [" eip712" ], optional = true } # https://github.com/gakonst/ethers-rs/releases
70- ethers-providers = { version = " =2.0.6 " , optional = true } # https://github.com/gakonst/ethers-rs/releases
71- ethers-signers = { version = " =2.0.6 " , optional = true } # https://github.com/gakonst/ethers-rs/releases
71+ ethers = { version = " =2.0.7 " , features = [" eip712" ], optional = true } # https://github.com/gakonst/ethers-rs/releases
72+ ethers-providers = { version = " =2.0.7 " , optional = true } # https://github.com/gakonst/ethers-rs/releases
73+ ethers-signers = { version = " =2.0.7 " , optional = true } # https://github.com/gakonst/ethers-rs/releases
7274
7375# [OPTIONAL] for "subnet"
7476futures = { version = " 0.3.28" , optional = true }
7577http = { version = " 0.2.9" , optional = true }
76- hyper = { version = " 0.14.26" , optional = true }
7778jsonrpc-core = { version = " 18.0.0" , optional = true }
7879jsonrpc-http-server = { version = " 18.0.0" , optional = true }
7980num-derive = { version = " 0.3.3" , optional = true }
@@ -94,8 +95,8 @@ base64 = { version = "0.21.2", optional = true } # https://github.com/marshallpi
9495num-bigint = { version = " 0.4.3" , optional = true }
9596
9697[build-dependencies ]
97- protoc-gen-prost = " 0.2.2 "
98- protoc-gen-tonic = " 0.2.2 "
98+ protoc-gen-prost = " 0.2.3 "
99+ protoc-gen-tonic = " 0.3.0 "
99100
100101[dev-dependencies ]
101102env_logger = " 0.10.0"
@@ -154,7 +155,6 @@ message = [
154155subnet = [
155156 " futures" ,
156157 " http" ,
157- " hyper" ,
158158 " jsonrpc-core" ,
159159 " num-derive" ,
160160 " num-traits" ,
0 commit comments