-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (41 loc) · 1.37 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 = "trinci-node"
version = "0.2.10"
authors = ["The Trinci Team <[email protected]>"]
edition = "2021"
description = "TRINCI blockchain node"
keywords = ["trinci", "blockchain", "node"]
[dependencies]
trinci-core = { git = "https://github.com/affidaty-blockchain/trinci-core" }
log = { version = "0.4.14", features = ["release_max_level_info"] }
clap = { version = "3.1.0", features = ["cargo"] }
toml = "0.5.8"
simplelog = "0.12.0"
hex = "0.4.3"
serde-value = { git = "https://github.com/affidaty-blockchain/serde-value", branch = "helper_macro" }
serde_bytes = "0.11.5"
# base58 for network name calculation
bs58 = "0.4.0"
rand = "0.8.4"
tempfile = "3.2.0"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", optional = true }
# POST
isahc = { version = "1.6.0", features = ["json"], optional = true }
# pretty print on file
ascii_table = { version = "4.0.2", optional = true }
# versioning comparer
version-compare = "0.1.0"
# autoreplicant feature dependencies
ring = { version = "0.16.20", default-features = false, features = ["std"] }
[dev-dependencies]
glob = "0.3.0"
[features]
default = ["monitor"]
tpm2 = ["trinci-core/tpm2"]
monitor = ["serde_json", "isahc", "ascii_table"]
rt-monitor = ["trinci-core/rt-monitor"]
indexer = ["trinci-core/indexer"]
ro-exec = ["trinci-core/ro-exec"]
kafka = ["trinci-core/kafka-producer"]