-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (36 loc) · 1 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
[package]
name = "libmonero"
description = "Batteries-included Monero Library"
version = "0.1.9"
edition = "2021"
license = "MIT"
homepage = "https://github.com/monerobuilders/libmonero"
documentation = "https://docs.rs/libmonero"
repository = "https://github.com/monerobuilders/libmonero"
readme = "README.md"
keywords = ["monero", "monero-library"]
exclude = ["main.rs"]
[dependencies]
base58-monero = "2.0.0"
byteorder = "1.5.0"
crc32fast = "1.3.2"
crypto = "0.5.1"
curve25519-dalek = "4.1.3"
digest = "0.10.7"
hex = "0.4.3"
rand = "0.8.5"
regex = "1.10.2"
sha3 = { version = "0.10.8"}
tokio = { version = "1.35.1", features = ["full"] }
ureq = { version = "2.9.1", features = ["json"] }
url = "2.5.0"
aes = { version = "0.8.3", features = ["hazmat"] }
tiny-keccak = { version = "2.0.2", features=["keccak"] }
keccak = "0.1.4"
# Hashes needed for implementing the final step
groestl = "0.10.1"
skein = "0.1.0"
jh = "0.1.0"
blake-hash = "0.4.1"
# Hashes needed for implementing the final step (end)
serde_json = "1.0.113"