-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (36 loc) · 1.06 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 = "banano_rs"
version = "0.1.0"
authors = ["Wrap That Potassium <wrap-that-potassium@protonmail.com>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/wBanano/banano_rs"
keywords = ["banano", "cryptocurrency"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.2", features = ["json"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
serde_with = { version = "1.9.4", features = ["chrono"] }
bigdecimal = { version = "0.2.0", features = ["serde"] }
once_cell = "1.8.0"
doc-comment = "0.3.3"
hex = "0.4.2"
bitvec = "0.22.3"
blake2 = "0.9.1"
byteorder = "1.4.3"
data-encoding = "2.3.2"
data-encoding-macro = "0.1.12"
ed25519-dalek = "1.0.1"
curve25519-dalek = "1.2.1"
chrono = "0.4"
strum = "0.21.0"
strum_macros = "0.21.1"
async-trait = "0.1.48"
log = "0.4.14"
thiserror = "1.0"
anyhow = "1.0.38"
[dev-dependencies]
tokio-test = "0.4.2"
tokio = { version = "1.6.1", features = ["full", "rt-multi-thread"] }
hex-literal = "0.3.1"