Skip to content

Commit 0f00b16

Browse files
authored
chore: bump alloy-signer to v0.14 (#2233)
1 parent e4c8e49 commit 0f00b16

File tree

13 files changed

+1753
-910
lines changed

13 files changed

+1753
-910
lines changed

Cargo.lock

+183-55
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/sdk/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ sp1-stark = { workspace = true }
4848
sp1-primitives = { workspace = true }
4949
itertools = { workspace = true }
5050
tonic = { version = "0.12", features = ["tls", "tls-roots"], optional = true }
51-
alloy-sol-types = { version = "0.8", default-features = false, optional = true }
52-
alloy-primitives = { version = "0.8", default-features = false, optional = true }
53-
alloy-signer = { version = "0.11", default-features = false, optional = true }
54-
alloy-signer-local = { version = "0.11", default-features = false, optional = true }
51+
alloy-sol-types = { version = "1.0", default-features = false, optional = true }
52+
alloy-primitives = { version = "1.0", default-features = false, optional = true }
53+
alloy-signer = { version = "0.14", default-features = false, optional = true }
54+
alloy-signer-local = { version = "0.14", default-features = false, optional = true }
5555
backoff = { version = "0.4", features = ["tokio"], optional = true }
5656

5757
# TEE Dependencies

crates/sdk/src/network/tee/api.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::SP1Stdin;
2-
use alloy_primitives::{Address, PrimitiveSignature};
2+
use alloy_primitives::{Address, Signature as AlloySignature};
33
use alloy_signer::SignerSync;
44
use serde::{Deserialize, Serialize};
55

@@ -17,7 +17,7 @@ pub struct TEERequest {
1717
/// The stdin for the program.
1818
pub stdin: SP1Stdin,
1919
/// The signature of the request id.
20-
pub signature: PrimitiveSignature,
20+
pub signature: AlloySignature,
2121
}
2222

2323
impl TEERequest {

crates/test-artifacts/programs/ssz-withdrawals/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ ssz_rs = { version = "0.9.0", features = ["serde"] }
1111
hex = "0.4.3"
1212
serde_with = { version = "3.4.0", features = ["hex"] }
1313
serde = { workspace = true, features = ["derive"] }
14-
alloy-primitives = "0.6.0"
14+
alloy-primitives = "1.0"
1515
sha2 = { git = "https://github.com/sp1-patches/RustCrypto-hashes.git", package = "sha2", branch = "patch-v0.9.8" }

0 commit comments

Comments
 (0)