forked from init4tech/zenith-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 1.93 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[workspace]
members = [ "crates/*" ]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2021"
rust-version = "1.76"
authors = ["Zenith Contributors"]
license = "UNLICENSED"
homepage = "https://github.com/init4tt/zenith"
repository = "https://github.com/init4tt/zenith"
[workspace.dependencies]
alloy-primitives = { version = "0.7", features = ["serde", "tiny-keccak"] }
alloy-sol-types = { version = "0.7", features = ["json"] }
alloy-rlp = { version = "0.3.4" }
alloy-contract = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
alloy-consensus = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf", features = ["k256", "kzg"] }
alloy-eips = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf"}
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
alloy-network = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
alloy-provider = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf", features = ["ws"] }
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
alloy-rpc-client = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
alloy-signer = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
alloy-signer-wallet = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
alloy-signer-aws = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
alloy-transport = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
alloy-transport-http = { git = "https://github.com/alloy-rs/alloy.git", rev = "3ccadcf" }
aws-config = "1.1.7"
aws-sdk-kms = "1.15.0"
hex = { package = "const-hex", version = "1.10", default-features = false, features = ["alloc"] }
serde = { version = "1.0.197", features = ["derive"] }
tracing = "0.1.40"
zenith-types = { path = "crates/types" }