-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (52 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
62 lines (52 loc) · 1.54 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
edition = "2024"
version = "0.1.0"
name = "deterministic-deployer-evm"
default-run = "deterministic-deployer-evm"
[dependencies]
toml = "1.0"
dotenv = "0.15"
alloy = { version = "1.0", features = ["full", "signer-keystore"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
eyre = "0.6"
rand = "0.8"
rpassword = "5"
log = "0.4"
env_logger = "0.11"
lexopt = "0.3"
thiserror = "2"
[dev-dependencies]
futures = "0.3"
serial_test = "3"
criterion = { version = "0.5", features = ["async_tokio"] }
tokio = { version = "1", features = ["test-util", "rt", "macros"] }
[[test]]
name = "test_get_rpc"
path = "test/stub-test/rpc-config/test_get_rpc.rs"
[[test]]
name = "test_wallet_init"
path = "test/stub-test/wallet-client/test_wallet_init.rs"
[[test]]
name = "test_create_keystore"
path = "test/stub-test/keystore/test_create_keystore.rs"
[[bench]]
harness = false
name = "create_keystore_bench"
path = "test/stub-test/keystore/create_keystore_bench.rs"
[[bench]]
harness = false
name = "rpc_bench"
path = "test/stub-test/rpc-config/rpc_bench.rs"
[[bench]]
harness = false
name = "wallet_init_bench"
path = "test/stub-test/wallet-client/wallet_init_bench.rs"
[[test]]
name = "test_public_client"
path = "test/stub-test/public-client/test_public_client.rs"
[[bench]]
harness = false
name = "public_client_bench"
path = "test/stub-test/public-client/public_client_bench.rs"