forked from input-output-hk/cardano-byron-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 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
47
48
[package]
name = "cardano-cli"
version = "1.0.1"
authors = [ "Nicolas Di Prima <[email protected]>"
, "Vincent Hanquez <[email protected]>"
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/input-output-hk/cardano-cli"
homepage = "https://github.com/input-output-hk/cardano-cli#README.md"
documentation = "https://github.com/input-output-hk/cardano-cli#USAGE.md"
description = """
The Cardano command line interface:
* powerful blockchain manager: download, explore, verify, analyse;
* manage multiple wallets: daedalus', icarus' or other kind of wallets;
* flexible transaction build engine.
"""
[dependencies]
console = "0.7"
dialoguer = { git = "https://github.com/mitsuhiko/dialoguer", rev = "cd94ac23c995c31c16b05512d30725cdb00bedf3" }
indicatif = "0.9"
log = "0.4"
dirs = "1.0"
rand = "0.6"
serde = "1.0"
serde_derive = "1.0"
serde_yaml = "0.8"
serde_json = "1.0"
env_logger = "0.5"
humantime = "1.1"
cbor_event = "^2.1.2"
cryptoxide = "0.1"
exe-common = { path = "cardano-deps/exe-common" }
cardano-storage = { path = "cardano-deps/storage" }
storage-units = { path = "cardano-deps/storage-units" }
base64 = "0.9"
lazy_static = "1.3"
[dependencies.clap]
version = "2.32"
default-features = false
features = [ "suggestions", "color", "wrap_help" ]
[dependencies.cardano]
path = "cardano-deps/cardano"
features = [ "generic-serialization" ]