-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (59 loc) · 1.68 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "cruzbit"
version = "1.0.1"
authors = ["Christian Smith <[email protected]>"]
edition = "2021"
rust-version = "1.70.0"
description = "A simple decentralized peer-to-peer ledger implementation"
readme = "README.md"
homepage = "https://cruzb.it"
repository = "https://github.com/christian-smith/cruzbit"
keywords = ["bitcoin", "crypto"]
categories = ["cryptography::cryptocurrencies"]
license = "MIT"
default-run = "client"
[[bin]]
name = "client"
[[bin]]
name = "wallet"
[dependencies]
argon2 = "0.5"
base64ct = { version = "1.6", features = ["std"] }
bincode = "1.3"
console = "0.15"
cruzbit-leveldb = "1.0"
crypto_secretbox = "0.1"
cuckoofilter = "0.5"
dialoguer = { version = "0.11", features = ["completion"] }
domain = "0.9"
ed25519-compact = "2.0"
env_logger = { version = "0.10", default-features = false, features = ["humantime"] }
faster-hex = { version = "0.9", features = ["serde"] }
futures = { version = "0.3", default-features = false }
getopts = "0.2"
humantime = "2.1"
ibig = "0.3"
igd = "0.12"
irc = { version = "0.15", default-features = false, features = ["tls-rust"] }
log = "0.4"
lz4 = "1.24"
network-interface = "1.1"
num-bigint = "0.4"
rand = { version = "0.8", default-features = false, features = ["std_rng"] }
rcgen = "0.12"
rustls-pemfile = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.4"
sha3 = "0.10"
thiserror = "1.0"
tokio = { version = "1.35", features = ["macros", "net", "rt-multi-thread", "signal", "io-util"] }
tokio-rustls = "0.25"
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] }
[dev-dependencies]
tempfile = "3.9"
[build-dependencies]
cmake = "0.1"
[features]
cuda = []
opencl = []