forked from hyperledger-iroha/iroha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (32 loc) · 1.09 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
[package]
name = "iroha_client_cli"
edition.workspace = true
version.workspace = true
authors.workspace = true
description.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
license.workspace = true
keywords.workspace = true
categories = ["cryptography::cryptocurrencies", "command-line-utilities"]
[lints]
workspace = true
[badges]
is-it-maintained-issue-resolution = { repository = "https://github.com/hyperledger/iroha" }
is-it-maintained-open-issues = { repository = "https://github.com/hyperledger/iroha" }
maintenance = { status = "actively-developed" }
[dependencies]
iroha_client = { workspace = true }
iroha_primitives = { workspace = true }
iroha_config_base = { workspace = true }
color-eyre = { workspace = true }
clap = { workspace = true, features = ["derive"] }
dialoguer = { version = "0.11.0", default-features = false }
json5 = { workspace = true }
once_cell = { workspace = true }
serde_json = { workspace = true }
erased-serde = "0.4.4"
[build-dependencies]
vergen = { version = "8.3.1", default-features = false }
color-eyre = "0.6.3"