-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (48 loc) · 1.65 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
[package]
name = "cshell"
version = "0.1.0"
edition = "2021"
rust-version = "1.76.0"
authors = [
"Dominic Mayhew <[email protected]>",
"Santiago Carmuega <[email protected]>"
]
description = "A Cardano wallet CLI built for developers."
readme = "README.md"
repository = "https://github.com/txpipe/cshell"
license = "Apache-2.0"
keywords = ["cardano", "blockchain", "wallet", "cardano"]
categories = ["command-line-utilities", "blockchain", "cardano", "wallet"]
[workspace]
members = [".", "migration", "entity"]
[dependencies]
entity = { path = "entity" }
migration = {path = "migration" }
chrono = { version = "0.4.37", features = ["serde"] }
clap = { version = "4.5.4", features = ["derive", "env"] }
comfy-table = "7.1.1"
directories = { version = "5.0.1" }
hex = "0.4.3"
indicatif = "0.17.8"
inquire = "0.7.4"
miette = { version = "7.2.0", features = ["fancy"] }
pallas = { version = "0.25.0", features = ["unstable"] }
prost = "0.12.4"
rand = "0.8.5"
sea-orm = { version = "0.12.15", features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros"] }
sea-orm-migration = { version = "0.12.15", features = ["sqlx-sqlite", "runtime-tokio-native-tls"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
slug = "0.1.5"
tokio = { version = "1.37.0", features = ["full"] }
tokio-stream = "0.1.15"
toml = "0.8.12"
tracing = "0.1.40"
tracing-indicatif = "0.3.6"
tracing-subscriber = "0.3.18"
url = { version = "2.5.0", features = ["serde"] }
utxorpc = { version = "0.2.0", git = "https://github.com/domMayhew/rust-sdk", branch = "feature/update-dependencies" }
num-bigint = "0.4.5"
futures = "0.3.30"
[dev-dependencies]
tempfile = "3"