forked from gakonst/ethers-fireblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 1.14 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
[package]
name = "ethers-fireblocks"
version = "0.1.3-alpha.0"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = """
ethers-rs middleware and signer for Fireblocks' APIs
"""
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ethers-core = { version="2.0.0", default-features = false }
ethers-providers = { version="2.0.0", default-features = false }
ethers-signers = { version="2.0.0", default-features = false }
serde_json = "1.0.60"
serde = "1.0.118"
jsonwebtoken = "7.2.0"
reqwest = { version = "0.11.4", default-features = false, features = ["json"] }
thiserror = "1.0.22"
rustc-hex = "2.1.0"
digest = "0.9.0"
sha2 = "0.9.2"
async-trait = "0.1.42"
rand = "0.8.5"
[dev-dependencies]
reqwest = { version = "0.11.4", default-features = false, features = ["json", "rustls"] }
tokio = { version = "1.10.0", features = ["macros", "rt"] }
once_cell = "1.5.2"
[features]
default = ["rustls"]
openssl = ["ethers-providers/openssl", "reqwest/native-tls"]
rustls = ["ethers-providers/rustls", "reqwest/rustls-tls"]