-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (41 loc) · 1.31 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]
members = ["dao", "dynamic_apis_tests"]
resolver = "2"
exclude = ["target"]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Aurora Labs <[email protected]>"]
rust-version = "1.82.0"
description = "Aurora relayer API testing library"
license = "CC0-1.0"
readme = "README.md"
repository = "https://github.com/aurora-is-near/aurora-api-testing-rs"
homepage = "https://github.com/aurora-is-near/aurora-api-testing-rs"
keywords = ["aurora", "testing"]
[workspace.dependencies]
anyhow = { version = "1.0", default-features = false }
jsonrpsee-http-client = "0.18.0"
jsonrpsee-ws-client = "0.18.0"
jsonrpsee-core = "0.18.0"
jsonrpsee-types = "0.18.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
tracing-subscriber = "0.3.17"
dotenv = "0.15.0"
itertools = "0.10.5"
ethereum-types = "0.14.0"
rusqlite = { version = "0.29.0", features = ["bundled"] }
serde = { version = "1.0" }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
serde_derive = "1.0"
serde_with = { version = "2.3.2", features = ["json"] }
num-bigint = { version = "0.4", default-features = false }
hex = "0.4"
ethers-core = "2.0.3"
ethers-providers = "2.0.3"
ethers-signers = "2.0.3"
ethers-middleware = "2.0.3"
ethers-contract = "2.0.3"
serial_test = "2.0.0"
futures = "0.3.25"