-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
79 lines (73 loc) · 3.49 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "galileo"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# TODO: this is way too complicated, the features in the penumbra crates need to be fixed
default = ["parallel", "rpc"]
parallel = ["penumbra-wallet/parallel"]
rpc = ["dep:prost"]
[dependencies]
# Penumbra dependencies
penumbra-asset = { path = "../penumbra/crates/core/asset" }
penumbra-auto-https = { path = "../penumbra/crates/util/auto-https" }
penumbra-custody = { path = "../penumbra/crates/custody" }
penumbra-fee = { path = "../penumbra/crates/core/component/fee" }
penumbra-keys = { path = "../penumbra/crates/core/keys" }
penumbra-proto = { path = "../penumbra/crates/proto", features = ["rpc", "box-grpc"] }
penumbra-transaction = { path = "../penumbra/crates/core/transaction", features = ["download-proving-keys"] }
penumbra-txhash = { path = "../penumbra/crates/core/txhash" }
penumbra-view = { path = "../penumbra/crates/view" }
penumbra-wallet = { path = "../penumbra/crates/wallet" }
# External dependencies
anyhow = "1"
axum-server = { version = "0.5.1" }
camino = "1"
directories = "4.0.1"
regex = "1"
pin-project-lite = "0.2.7"
async-stream = "0.3"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "3", features = ["derive"] }
csv = "1.2"
derivative = "2"
futures = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
humantime = "2"
indexmap = "1.8"
num-traits = "0.2"
prost = { version = "0.12.3", optional = true }
rand = "0.8"
reqwest = "0.11"
serde = "1"
serde_json = "1"
tap = "1"
tokio = { version = "1.25", features = ["full"] }
toml = "0.7"
tonic = { version = "0.10", features = ["tls-webpki-roots", "tls"] }
tonic-reflection = "0.10.0"
tonic-web = "0.10.0"
tower = { version = "0.4", features = ["balance"] }
tower-http = { version = "0.4" }
tower-service = { version = "0.3.1" }
tracing = "0.1"
tracing-subscriber = "0.2"
url = "2"
[dependencies.serenity]
version = "0.11"
default-features = false
features = [
"cache",
"client",
"gateway",
"model",
"rustls_backend",
"utils",
]
[build-dependencies]
anyhow = "1"
pbjson-build = "0.6"
prost-build = "0.12.3"
tonic-build = { version = "0.10.0", features = ["cleanup-markdown"] }