-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
83 lines (76 loc) · 2.15 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
80
81
82
83
[package]
name = "tide-disco"
version = "0.9.3"
edition = "2021"
authors = ["Espresso Systems <[email protected]>"]
description = "Discoverability for Tide"
repository = "https://github.com/EspressoSystems/tide-disco"
license-file = "LICENSE"
[features]
testing = ["async-compatibility-layer", "async-tungstenite"]
[[example]]
name = "hello-world"
test = true
required-features = ["testing"]
[[example]]
name = "versions"
test = true
required-features = ["testing"]
[dependencies]
anyhow = "1.0"
async-h1 = "2.3"
async-lock = "3.3"
async-std = { version = "1.12", features = ["attributes", "tokio1"] }
async-trait = "0.1.79"
clap = { version = "4.5", features = ["derive"] }
config = "0.14"
derivative = "2.2"
derive_more = "0.99"
dirs = "5.0.1"
edit-distance = "2.1"
futures = "0.3.30"
futures-util = "0.3.30"
http = "1.1.0"
include_dir = "0.7"
itertools = "0.12"
lazy_static = "1.4"
libc = "0.2"
markdown = "0.3"
maud = { version = "0.26", features = ["tide"] }
parking_lot = "0.12"
pin-project = "1.0"
prometheus = "0.13"
reqwest = { version = "0.12", features = ["json"] }
routefinder = "0.5"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_with = "3.7"
serde_json = "1.0"
shellexpand = "3.1"
signal-hook = "0.3.14"
snafu = "0.8"
strum = "0.26"
strum_macros = "0.26"
tagged-base64 = "0.4"
tide = { version = "0.16.0", default-features = false }
tide-websockets = "0.4.0"
toml = "0.8"
tracing = "0.1.40"
tracing-distributed = "0.4"
tracing-futures = "0.2"
tracing-log = "0.2"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
url = "2.5.0"
vbs = "0.1"
rand = "0.8"
# Dependencies enabled by feature `testing`
async-compatibility-layer = { version = "1.1", features = ["logging-utils"], optional = true }
async-tungstenite = { version = "0.25", features = ["async-std-runtime"], optional = true }
[target.'cfg(not(windows))'.dependencies]
signal-hook-async-std = "0.2.2"
[dev-dependencies]
ark-serialize = { version = "0.4", features = ["derive"] }
ark-std = "0.4.0"
async-compatibility-layer = { version = "1.1", features = ["logging-utils"] }
async-tungstenite = { version = "0.25", features = ["async-std-runtime"] }
portpicker = "0.1"