Skip to content

Commit 5b616d6

Browse files
stefan-mystenDaughterOfMars
authored andcommitted
chore: update crates to latest versions (#19)
1 parent 08e4901 commit 5b616d6

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

crates/sui-crypto/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,28 +61,28 @@ k256 = { version = "0.13.4", default-features = false, features = ["ecdsa"], opt
6161

6262
# zklogin verification support
6363
ark-bn254 = { version = "0.4.0", optional = true }
64-
ark-ff = { version = "0.4.1", features = ["asm"], optional = true }
64+
ark-ff = { version = "0.4.2", features = ["asm"], optional = true }
6565
ark-groth16 = { version = "0.4.0", default-features = false, optional = true }
6666
ark-snark = { version = "0.4.0", optional = true }
6767
ark-std = { version = "0.4.0", optional = true }
6868
base64ct = { version = "1.6.0", features = ["alloc"], optional = true }
69-
bnum = { version = "0.11.0", optional = true }
70-
itertools = { version = "0.10.5", optional = true }
71-
serde = { version = "1.0.190", optional = true }
72-
serde_derive = { version = "1.0.190", optional = true }
73-
serde_json = { version = "1.0.114", optional = true }
69+
bnum = { version = "0.12.0", optional = true }
70+
itertools = { version = "0.13.0", optional = true }
71+
serde = { version = "1.0.210", optional = true }
72+
serde_derive = { version = "1.0.210", optional = true }
73+
serde_json = { version = "1.0.128", optional = true }
7474

7575
[dev-dependencies]
7676
bcs = { version = "0.1.6" }
7777
hex = "0.4.3"
78-
serde_json = { version = "1.0.114" }
78+
serde_json = { version = "1.0.128" }
7979

8080
# proptest support in tests
8181
#
8282
# Pin to this specific commit in order to work around an issue where proptest doesn't build properly in wasm environments
8383
# see https://github.com/proptest-rs/proptest/pull/270 for more info
8484
proptest = { git = "https://github.com/bmwill/proptest.git", rev = "bc36db126183bce18c8bc595f0c0cfeac48b870c", default-features = false, features = ["std"] }
85-
test-strategy = "0.3.1"
85+
test-strategy = "0.4.0"
8686

8787
[target.wasm32-unknown-unknown.dev-dependencies]
8888
wasm-bindgen-test = "0.3"

crates/sui-graphql-client/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ readme = "README.md"
99
description = "Sui GraphQL RPC Client for the Sui Blockchain"
1010

1111
[dependencies]
12-
anyhow = "1.0.86"
13-
async-trait = "0.1.81"
12+
anyhow = "1.0.8"
13+
async-trait = "0.1.8"
1414
base64ct = { version = "1.6.0", features = ["alloc"] }
1515
bcs = "0.1.6"
1616
chrono = { version = "0.4.38" }
17-
cynic = { version = "3.7.3" }
17+
cynic = { version = "3.8.0" }
1818
reqwest = { version = "0.12", features = ["json"] }
1919
sui-types = { package = "sui-sdk-types", path = "../sui-sdk-types", features = ["serde"] }
20-
tokio = { version = "1.39.2", features = ["full"] }
20+
tokio = { version = "1.40.0", features = ["full"] }
2121

2222
[build-dependencies]
23-
cynic-codegen = { version = "3.7.3" }
23+
cynic-codegen = { version = "3.8.0" }
2424

crates/sui-sdk-types/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ hash = ["dep:blake2"]
3838

3939
[dependencies]
4040
base64ct = { version = "1.6.0", features = ["alloc"] }
41-
bnum = "0.11.0"
41+
bnum = "0.12.0"
4242
bs58 = "0.5.1"
4343
hex = "0.4.3"
4444
roaring = { version = "0.10.6", default-features = false }
45-
winnow = "0.6.18"
45+
winnow = "0.6.20"
4646

4747
# Serialization and Deserialization support
4848
bcs = { version = "0.1.6", optional = true }
4949
serde = { version = "1.0.190", optional = true }
5050
serde_derive = { version = "1.0.190", optional = true }
51-
serde_json = { version = "1.0.114", optional = true }
51+
serde_json = { version = "1.0.128", optional = true }
5252
serde_with = { version = "3.9", default-features = false, features = ["alloc"], optional = true }
5353

5454
# JsonSchema definitions for types, useful for generating an OpenAPI Specificaiton.
@@ -62,17 +62,17 @@ blake2 = { version = "0.10.6", optional = true }
6262

6363
[dev-dependencies]
6464
bcs = "0.1.6"
65-
jsonschema = { version = "0.18", default-features = false }
66-
num-bigint = "0.4.4"
65+
jsonschema = { version = "0.20", default-features = false }
66+
num-bigint = "0.4.6"
6767
paste = "1.0.15"
68-
serde_json = "1.0.114"
68+
serde_json = "1.0.128"
6969

7070
# proptest support in tests
7171
#
7272
# Pin to this specific commit in order to work around an issue where proptest doesn't build properly in wasm environments
7373
# see https://github.com/proptest-rs/proptest/pull/270 for more info
7474
proptest = { git = "https://github.com/bmwill/proptest.git", rev = "bc36db126183bce18c8bc595f0c0cfeac48b870c", default-features = false, features = ["std"] }
75-
test-strategy = "0.3.1"
75+
test-strategy = "0.4"
7676

7777
[target.wasm32-unknown-unknown.dev-dependencies]
7878
wasm-bindgen-test = "0.3"

crates/sui-sdk-types/src/types/serialization_proptests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ where
3939
{
4040
let root_schema = schemars::gen::SchemaGenerator::default().into_root_schema_for::<T>();
4141
let schema = serde_json::json!(root_schema);
42-
let compiled = jsonschema::JSONSchema::compile(&schema).unwrap();
42+
let compiled = jsonschema::Validator::new(&schema).unwrap();
4343
let instance = serde_json::json!(instance);
4444

4545
let result = compiled.validate(&instance);

0 commit comments

Comments
 (0)