-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 1.05 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
[package]
name = "alchemy-api"
version = "0.1.0"
edition = "2021"
authors = ["phnaharris <phnanh.harris@gmail.com>"]
license = "GPL-3.0-or-later"
description = "A high-level binding for Alchemy Enhanced APIs, written in Rust."
repository = "https://github.com/phnaharris/alchemy-api-rs.git"
keywords = ["alchemy", "api", "web3"]
categories = ["api-bindings", "development-tools"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
async-trait = "0.1.74"
bytes = "1.5.0"
chrono = { version = "0.4.31", features = ["serde"] }
derive_builder = "0.12.0"
ethers-core = { version = "2.0.11", features = ["legacy"] }
http = "0.2.9"
reqwest = { version = "0.11.22", features = ["json"] }
serde = "1.0.189"
serde_json = "1.0.107"
serde_urlencoded = "0.7.1"
serde_with = "3.4.0"
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.40"
url = "2.5.0"
[dev-dependencies]
tracing-subscriber = { version = "0.3.17", features = ["json", "env-filter"] }