This repository was archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (51 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
65 lines (51 loc) · 1.45 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "gem-node"
version = "0.1.0"
edition = "2021"
authors = ["DEADBLACKCLOVER <deadblackclover@protonmail.com>"]
description = "Experimental blockchain"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/CipherDogs/gem-node"
repository = "https://github.com/CipherDogs/gem-node"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "gem"
path = "src/main.rs"
[dependencies]
# Async
async-std = { version = "1.12", features = ["attributes", "unstable"] }
async-trait = "0.1"
# Handling command line arguments
clap = { version = "4.1.6", features = ["derive"] }
# Logging
env_logger = "0.10.0"
log = "0.4.17"
# Error handling
anyhow = "1.0.69"
# JSON-RPC
jsonrpc-core = "18.0.0"
jsonrpc-derive = "18.0.0"
jsonrpc-http-server = "18.0.0"
# Serialize and Deserialize
bincode = "1.3.3"
serde = { version = "1.0", features = ["derive"] }
serde-big-array = "0.5.0"
# Cryptographic keys and their representation
base58 = "0.2.0"
blake2 = "0.10.6"
ed25519-dalek = "1.0.1"
# Wallet
argon2 = "0.5.0"
chacha20poly1305 = "0.10.1"
hex = "0.4.3"
rpassword = "7.2.0"
# Storing the state
rocksdb = "0.20.1"
# Network
libp2p = { version = "0.51.3", features = ["async-std", "gossipsub", "identify", "macros", "mdns", "noise", "request-response", "tcp", "yamux"] }
# Proof-of-work
randomx-rs = { git = "https://github.com/tari-project/randomx-rs", tag = "v1.1.14" }
# Other
rand = "0.7"
uint = "0.9.5"