-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
46 lines (42 loc) · 1.12 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
44
45
46
[package]
name = "arweave-rs"
version = "0.2.0"
edition = "2021"
description = "A sdk for interacting with Arweave using Rust"
license = "MIT"
keywords = ["arweave", "cryptocurrency"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.64"
async-recursion = "0.3.2"
async-stream = "0.3.2"
async-trait = "0.1.57"
avro-rs = "0.13.0"
base64 = "0.13.0"
borsh = "0.9.3"
bytes = "1.1.0"
data-encoding = "2.3.2"
futures = "0.3.24"
infer = "0.9.0"
jsonwebkey = { version = "0.3.4", features = [ "pkcs-convert" ] }
lazy_static = "1.4.0"
mime_guess = "2.0.3"
paris = "1.5.13"
pretend = "0.4.0"
rand = "0.8.5"
reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls", "json"] }
rsa = "0.6.1"
sha2 = "0.10.2"
serde = { version = "1.0.144", features = ["derive"]}
serde-aux = "4.1.0"
serde_json = { version = "1.0.85" }
thiserror = "1.0.34"
tokio = { version = "1.21.1", features = ["full"]}
url = "2.3.1"
[dev-dependencies]
tokio-test = "0.4.2"
httpmock = "0.6"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]