-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
43 lines (38 loc) · 1.09 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
42
43
[workspace]
resolver = "2"
members = [
"crates/l2/starknet-core-contract-client",
"crates/l2/ethereum-instance",
"crates/l2/starknet-eth-bridge-client",
"crates/l2/starknet-token-bridge-client",
"crates/l2/starkgate-manager-client",
"crates/l2/utils",
"crates/l2/starknet-erc20-client",
"crates/l2/starkgate-registry-client",
"crates/l2/starknet-proxy-client",
"crates/l3/appchain-core-contract-client",
]
[workspace.package]
authors = ["Starkware Exploration Team", "OnlyDust Contributors"]
edition = "2021"
repository = "https://github.com/keep-starknet-strange/zaun/"
version = "0.1.0"
[workspace.dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs", rev = "f0e5b194f09c533feb10d1a686ddb9e5946ec107" }
log = "0.4.20"
thiserror = "1.0.51"
num-traits = "0.2.17"
async-trait = "0.1.74"
dirs = "5.0.1"
serde_json = "1.0.108"
hex = "0.4.3"
color-eyre = "0.6.3"
# Starknet crates
starknet = "0.11.0"
starknet-ff = "0.3.7"
starknet-core = "0.11.0"
starknet-providers = "0.11.0"
starknet-contract = "0.10.0"
starknet-signers = "0.9.0"
starknet-accounts = "0.10.0"
url = "2.5.2"